Skip to content

Commit

Permalink
Merge pull request #540 from jkloetzke/increase-jenkins-timeout
Browse files Browse the repository at this point in the history
test: increase timeouts for Jenkins integration test
  • Loading branch information
jkloetzke authored Nov 17, 2023
2 parents 0fd7793 + 8765ed6 commit 6120b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/jenkins/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def getIdleStatus(self):
return q['computer'][0]['idle']

def drainBuildQueue(self):
for i in range(30):
for i in range(120):
time.sleep(1)
q = self.getBuildQueue()
if q is None:
Expand Down Expand Up @@ -327,7 +327,7 @@ def download(url, dest):
print("[TEST]:", "Jenkins running as pid", jenkinsProc.pid, "in", jenkinsHome)

print("[TEST]:", "Waiting for Jenkins to get ready...")
for i in range(60):
for i in range(120):
time.sleep(1)
try:
jc = JenkinsConnection("http://localhost:8080/", "bob", "test")
Expand Down

0 comments on commit 6120b25

Please sign in to comment.