Merge pull request #3586 from radarhere/before_install

Moved before_install before install
This commit is contained in:
Hugo 2019-02-03 11:33:19 +02:00 committed by GitHub
commit 7a46bf223e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,6 +62,9 @@ matrix:
services: services:
- docker - docker
before_install:
- if [ "$DOCKER" ]; then travis_retry docker pull pythonpillow/$DOCKER:$DOCKER_TAG; fi
install: install:
- | - |
if [ "$LINT" == "true" ]; then if [ "$LINT" == "true" ]; then
@ -70,9 +73,6 @@ install:
.travis/install.sh; .travis/install.sh;
fi fi
before_install:
- if [ "$DOCKER" ]; then travis_retry docker pull pythonpillow/$DOCKER:$DOCKER_TAG; fi
before_script: before_script:
# Qt needs a display for some of the tests, and it's only run on the system site packages install # Qt needs a display for some of the tests, and it's only run on the system site packages install
- | - |