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"]))