Change build timeout from 60 to 120 seconds
This commit is contained in:
parent
6a67a1dec1
commit
2c53c9bda1
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ def test_examples_in_folder(folderpath):
|
|||
|
||||
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE)
|
||||
r = proc.wait(timeout=60)
|
||||
r = proc.wait(timeout=120)
|
||||
out = proc.stdout.read()
|
||||
err = proc.stderr.read()
|
||||
#print(cmd)
|
||||
|
|
|
|||
Loading…
Reference in a new issue