Skip to content

Commit ca4de93

Browse files
authored
Merge pull request espressif#108 from adafruit/PaintYourDragon-patch-1
Change build timeout from 60 to 120 seconds
2 parents 6a67a1d + 2c53c9b commit ca4de93

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=60)
338+
r = proc.wait(timeout=120)
339339
out = proc.stdout.read()
340340
err = proc.stderr.read()
341341
#print(cmd)

0 commit comments

Comments
 (0)