From daa44c3839b599c8eec672d35955cc2dcda8c64e Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Tue, 23 Jun 2026 14:19:02 -0400 Subject: [PATCH] Silence ruff warning about autouse fixture --- 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 630bedce..e72a634a 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) +@pytest.fixture(autouse=True) # noqa: RUF076 def init_cuda_context(): yield from init_cuda_context_fixture()