Skip to content

Commit 0570c1c

Browse files
committed
Fix logic
1 parent 3efb2d5 commit 0570c1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cuda_core/tests/system/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
if system.CUDA_BINDINGS_NVML_IS_COMPATIBLE:
1313
from cuda.bindings._test_helpers.arch_check import hardware_supports_nvml
1414

15-
SHOULD_SKIP_NVML_TESTS &= not hardware_supports_nvml()
15+
SHOULD_SKIP_NVML_TESTS |= not hardware_supports_nvml()
1616

1717

1818
skip_if_nvml_unsupported = pytest.mark.skipif(

0 commit comments

Comments
 (0)