We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0430930 commit 95c3914Copy full SHA for 95c3914
cuda_bindings/tests/test_cuda.py
@@ -1020,6 +1020,10 @@ def test_cuFuncGetName_failure():
1020
assert name is None
1021
1022
1023
+@pytest.mark.skipif(
1024
+ os.environ.get("CUDA_PYTHON_SANITIZER_RUNNING", "0") == "1",
1025
+ reason="The compute-sanitzer is running, and this test intentionally causes an API error.",
1026
+)
1027
@pytest.mark.skipif(
1028
driverVersionLessThan(12080) or not supportsCudaAPI("cuCheckpointProcessGetState"),
1029
reason="When API was introduced",
0 commit comments