Skip to content

Commit

Permalink
Make it run!
Browse files Browse the repository at this point in the history
  • Loading branch information
s0undt3ch committed Dec 9, 2013
1 parent 9faacae commit a295af6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/jenkins.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def delete_vm(options):
log_stdout=True
)
while proc.isalive():
proc.recv()
time.sleep(0.025)
return proc.exitstatus

Expand Down Expand Up @@ -121,6 +122,7 @@ def download_unittest_reports(options):
log_stdout=True
)
while proc.isalive():
proc.recv()
time.sleep(0.025)

if proc.exitstatus != 0:
Expand Down Expand Up @@ -163,6 +165,7 @@ def download_coverage_report(options):
log_stdout=True
)
while proc.isalive():
proc.recv()
time.sleep(0.025)

if proc.exitstatus != 0:
Expand Down Expand Up @@ -210,6 +213,7 @@ def download_remote_logs(options):
log_stdout=True
)
while proc.isalive():
proc.recv()
time.sleep(0.025)

if proc.exitstatus != 0:
Expand Down Expand Up @@ -250,6 +254,7 @@ def run(opts):
log_stdout=True
)
while proc.isalive():
proc.recv()
time.sleep(0.025)

retcode = proc.exitstatus
Expand Down

0 comments on commit a295af6

Please sign in to comment.