Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast authored Jan 10, 2023
1 parent 9945cae commit 2da4026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _execute(cmd):
t0 = time.time()
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
try:
stdout, stderr = p.communicate(timeout=300)
stdout, stderr = p.communicate(timeout=420)
errored = p.returncode != 0
except subprocess.TimeoutExpired:
p.kill()
Expand Down

0 comments on commit 2da4026

Please sign in to comment.