From ac019642527cacb0a8c7dec00a01ff95f7966d1f Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 28 Jun 2026 14:17:34 -0500 Subject: [PATCH] Revert "Silence ruff warning about autouse fixture" This reverts commit daa44c3839b599c8eec672d35955cc2dcda8c64e. --- test/test_gpuarray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_gpuarray.py b/test/test_gpuarray.py index e72a634a..630bedce 100644 --- a/test/test_gpuarray.py +++ b/test/test_gpuarray.py @@ -14,7 +14,7 @@ from pycuda.tools import init_cuda_context_fixture -@pytest.fixture(autouse=True) # noqa: RUF076 +@pytest.fixture(autouse=True) def init_cuda_context(): yield from init_cuda_context_fixture()