From ded495575a2f200533e78d6e84a2169c96e4afda Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Thu, 1 Feb 2024 20:13:39 -0800 Subject: [PATCH] Fix: PyTest Fixtures Cannot be Marked (#251) Cannot be marked skipped. --- tests/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 2ca651b9..d55539c2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -109,9 +109,6 @@ def __exit__(self, exc_type, exc_value, traceback): yield mfab -@pytest.mark.skipif( - amr.Config.gpu_backend != "CUDA", reason="Requires AMReX_GPU_BACKEND=CUDA" -) @pytest.fixture(scope="function", params=list(itertools.product([1, 3], [0, 1]))) def mfab_device(boxarr, distmap, request): """MultiFab that resides purely on the device: