Skip to content
Snippets Groups Projects

ci/travis.py: also wait if in "created" state

Merged Vladimír Čunát requested to merge ci-travis into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -38,7 +38,7 @@ while time.time() < end_time:
if state == "passed":
exit("Travis CI Result: PASSED!", code=0)
elif state == "started":
elif state == "created" or state == "started":
continue
else:
exit("Travis CI Result: {}!".format(state.upper()))
Loading