Skip to content

Commit 73b5436

Browse files
author
Thomas Baker
committed
timeout
1 parent 675d9fa commit 73b5436

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/verify_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def verify_type_import_in_subprocess(module_name: str, class_name: str) -> Optio
6767
["poetry", "run", "python", "-c", test_code],
6868
capture_output=True,
6969
text=True,
70-
timeout=10,
70+
timeout=30,
7171
cwd=str(project_root)
7272
)
7373

@@ -78,7 +78,7 @@ def verify_type_import_in_subprocess(module_name: str, class_name: str) -> Optio
7878
return error_msg
7979

8080
except subprocess.TimeoutExpired:
81-
return "Timeout: Import took longer than 10 seconds"
81+
return "Timeout: Import took longer than 30 seconds"
8282
except Exception as e:
8383
return f"Subprocess error: {str(e)}"
8484

0 commit comments

Comments
 (0)