Skip to content

Commit f9a9e9f

Browse files
committed
Increase test_path_finder.py subprocess.run() timeout to 30 seconds:
Under Windows, loading cublas or cusolver may exceed the 10 second timeout: #578 (comment)
1 parent b79e85b commit f9a9e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuda_bindings/tests/test_path_finder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +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.
91+
timeout=30, # Ensure CI testing does not hang for an excessive amount of time.
9292
)
9393
if result.returncode == 0:
9494
info_summary_append(f"abs_path={result.stdout.rstrip()}")

0 commit comments

Comments
 (0)