We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b8d32c commit 604b450Copy full SHA for 604b450
1 file changed
scripts/run_tests.sh
@@ -1,6 +1,6 @@
1
#!/usr/bin/env bash
2
3
-# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
+# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
4
# SPDX-License-Identifier: Apache-2.0
5
6
set -euo pipefail
@@ -133,7 +133,7 @@ status_from_rc() {
133
run_pytest() {
134
# Run pytest safely under set -e and return its exit code
135
set +e
136
- python -m pytest "${PYTEST_FLAGS[@]}" "$@"
+ CUDA_PYTHON_CUDA_PER_THREAD_DEFAULT_STREAM=0 python -m pytest "${PYTEST_FLAGS[@]}" "$@"
137
local rc=$?
138
set -e
139
return ${rc}
0 commit comments