We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb0e63a commit 0be7b20Copy full SHA for 0be7b20
.travis.yml
@@ -35,5 +35,10 @@ before_script:
35
# (we ignore test_pythonpackage.py since these run way too long!! test_pythonpackage_basic.py will still be run.)
36
37
script:
38
+ # Run a background process to make sure that travis will not kill our tests in
39
+ # case that the travis log doesn't produce any output for more than 10 minutes
40
+ - while sleep 540; do echo "==== Still running (travis, don't kill me) ===="; done &
41
- docker build --tag=p4a --file Dockerfile.py3 .
42
- docker run -e CI p4a /bin/sh -c "$COMMAND"
43
+ # kill the background process started before run docker
44
+ - kill %1
0 commit comments