From b57aaa7e7e5b1a3142ee0b0c0f3b98045f1695ab Mon Sep 17 00:00:00 2001 From: dkazanc Date: Fri, 16 Aug 2024 14:10:02 +0100 Subject: [PATCH] fixes #319 --- tests/conftest.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index d6b5b7d86..5fcaa2037 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -133,23 +133,11 @@ def host_angles(data_file): return np.float32(np.copy(data_file["angles"])) -@pytest.fixture -def angles(host_angles, ensure_clean_memory): - import cupy as cp - - return cp.asarray(host_angles) - - @pytest.fixture def host_angles_radians(host_angles): return host_angles -@pytest.fixture -def angles_radians(angles): - return angles - - @pytest.fixture def host_flats(data_file): return np.float32(np.copy(data_file["flats"]))