Skip to content

Commit

Permalink
speeding up traci tests #21
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Dec 20, 2024
1 parent 53b571c commit bda8a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tracirunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
serverProcess = subprocess.Popen(
server_args, stdout=sys.stdout, stderr=sys.stderr)
success = False
for retry in range(7):
time.sleep(retry)
for retry in range(10):
time.sleep(retry * 0.1)
clientProcess = subprocess.Popen(
client_args, stdout=sys.stdout, stderr=sys.stderr)
if serverProcess.poll() is not None and clientProcess.poll() is None:
Expand Down

0 comments on commit bda8a94

Please sign in to comment.