Skip to content

Commit

Permalink
Update run_tests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
firnkes committed Aug 11, 2016
1 parent 8d31f2a commit 8175c7f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions contest/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ def main():
break
else:
print("hana not available yet, retrying...")
time.sleep(1)

pytest.main(sys.argv[1:])
time.sleep(10)

rc = pytest.main(sys.argv[1:])
if rc != 0:
sys.exit("pytest run has failed")

if __name__ == "__main__":
main()

0 comments on commit 8175c7f

Please sign in to comment.