Skip to content

Commit b79e85b

Browse files
committed
Add timeout=10 seconds to test_path_finder.py subprocess.run() invocations.
1 parent 7650b2e commit b79e85b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cuda_bindings/tests/test_path_finder.py

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ def test_find_or_load_nvidia_dynamic_library(info_summary_append, api, libname):
8888
stdout=subprocess.PIPE,
8989
stderr=subprocess.PIPE,
9090
encoding="utf-8",
91+
timeout=10, # Ensure CI testing does not hang for an excessive amount of time.
9192
)
9293
if result.returncode == 0:
9394
info_summary_append(f"abs_path={result.stdout.rstrip()}")

0 commit comments

Comments
 (0)