aboutsummaryrefslogtreecommitdiff
path: root/test/requests
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-10-28 16:29:56 +0300
committerFrederick Muriuki Muriithi2022-10-28 16:29:56 +0300
commit50b10bd0c4161ff64c529eb2ae6909093586b0cf (patch)
tree740c58fe28910c36110edd579a5cb50a9cb2901d /test/requests
parent35f97be6f5633d0812edfec9d1c70a661457e4d5 (diff)
downloadgenenetwork2-50b10bd0c4161ff64c529eb2ae6909093586b0cf.tar.gz
Increase back-off time before mechanical-rob tests run
Diffstat (limited to 'test/requests')
-rwxr-xr-xtest/requests/test-website.py2
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)