We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbbee7 commit c5c1766Copy full SHA for c5c1766
1 file changed
.travis.yml
@@ -52,4 +52,11 @@ install:
52
- $PYTHON -m pip install -U pip
53
- $PYTHON -m pip install -e ".[dev]" pytest-custom-exit-code
54
55
-script: $PYTHON ./bin/run_tests.py
+script: |
56
+ # travis_wait disable the output while waiting
57
+ # use the same kind of tricks as in multibuild
58
+ (while true; do echo "travis_keep_alive"; sleep 300; done) &
59
+ SPINNER_PID=$!
60
+ disown
61
+ $PYTHON ./bin/run_tests.py
62
+ kill -9 ${SPINNER_PID}
0 commit comments