Skip to content

Commit e1dacef

Browse files
Added timeout to join of thread
1 parent c0e476f commit e1dacef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_quick_parallel_jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ def test_parameter_optimization():
6262
t1.start()
6363
t2.start()
6464

65-
t1.join()
66-
t2.join()
65+
t1.join(timeout=10)
66+
t2.join(timeout=10)

0 commit comments

Comments
 (0)