diff options
author | Frederick Muriuki Muriithi | 2022-10-28 16:29:56 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-10-28 16:29:56 +0300 |
commit | 50b10bd0c4161ff64c529eb2ae6909093586b0cf (patch) | |
tree | 740c58fe28910c36110edd579a5cb50a9cb2901d | |
parent | 35f97be6f5633d0812edfec9d1c70a661457e4d5 (diff) | |
download | genenetwork2-50b10bd0c4161ff64c529eb2ae6909093586b0cf.tar.gz |
Increase back-off time before mechanical-rob tests run
-rwxr-xr-x | test/requests/test-website.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index aa8b7404..7edb42bc 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -22,7 +22,7 @@ print("Mechanical Rob firing up...") def host_is_online(host): import time import requests - for count in range(1, 5): + for count in range(1, 10): try: time.sleep(count) requests.get(host) |