Skip to content

Commit 6b10fd6

Browse files
authored
Merge pull request espressif#109 from adafruit/PaintYourDragon-patch-1
Restore Arduino build timeout to 60 seconds
2 parents ca4de93 + febfc92 commit 6b10fd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_platform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def test_examples_in_folder(folderpath):
335335

336336
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
337337
stderr=subprocess.PIPE)
338-
r = proc.wait(timeout=120)
338+
r = proc.wait(timeout=60)
339339
out = proc.stdout.read()
340340
err = proc.stderr.read()
341341
#print(cmd)

0 commit comments

Comments
 (0)