Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cuda_core/tests/system/test_system_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
except ImportError:
from cuda import cuda as driver

import helpers

from cuda.core import system
from cuda.core._utils.cuda_utils import handle_return

Expand Down Expand Up @@ -60,6 +62,7 @@ def test_nvml_version():
assert 0 <= ver_patch[0] <= 99


@pytest.mark.skipif(helpers.IS_WSL, reason="Process names may not be available on WSL")
@skip_if_nvml_unsupported
def test_get_process_name():
try:
Expand Down
Loading