Change build timeout from 60 to 120 seconds

This commit is contained in:
Paint Your Dragon 2021-10-06 09:15:27 -07:00 committed by GitHub
parent 6a67a1dec1
commit 2c53c9bda1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)