We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a795ce commit 6bc911cCopy full SHA for 6bc911c
1 file changed
cuda_bindings/tests/test_utils.py
@@ -1,6 +1,7 @@
1
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3
4
+import platform
5
import random
6
import subprocess # nosec B404
7
import sys
@@ -94,14 +95,14 @@ def test_get_handle_error(target):
94
95
96
@pytest.mark.parametrize(
97
"module",
98
+ # Top-level modules for external Python use
99
[
- # Top-level modules for external Python use
- "cufile",
100
"driver",
101
"nvjitlink",
102
"nvrtc",
103
"nvvm",
104
"runtime",
105
+ *(["cufile"] if platform.system() != "Windows" else []),
106
],
107
)
108
def test_cyclical_imports(module):
0 commit comments