Merge pull request #109 from adafruit/PaintYourDragon-patch-1

Restore Arduino build timeout to 60 seconds
This commit is contained in:
Limor "Ladyada" Fried 2021-10-06 14:08:28 -04:00 committed by GitHub
commit 6b10fd6eb6
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=120)
r = proc.wait(timeout=60)
out = proc.stdout.read()
err = proc.stderr.read()
#print(cmd)