We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e42947 commit 510fbe0Copy full SHA for 510fbe0
1 file changed
cuda_core/tests/system/test_system_system.py
@@ -12,6 +12,8 @@
12
except ImportError:
13
from cuda import cuda as driver
14
15
+import helpers
16
+
17
from cuda.core import system
18
from cuda.core._utils.cuda_utils import handle_return
19
@@ -60,6 +62,7 @@ def test_nvml_version():
60
62
assert 0 <= ver_patch[0] <= 99
61
63
64
65
+@pytest.mark.skipif(helpers.IS_WSL, reason="Process names may not be available on WSL")
66
@skip_if_nvml_unsupported
67
def test_get_process_name():
68
try:
0 commit comments