diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-05-19 13:58:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-19 13:58:37 +0200 |
commit | 9d521dbfee3f59ea3f48c3ac03f8a307908c26ce (patch) | |
tree | fddd496d57c2a1bf402bc1ac4b6ad4947e77b4f7 /.travis.yml | |
parent | 4ab0d25f652bdfe184046be6d50afd594709e1a9 (diff) | |
parent | be085c3d18f7c788b0931228b3d990661ae703e0 (diff) | |
download | wallabag-9d521dbfee3f59ea3f48c3ac03f8a307908c26ce.tar.gz wallabag-9d521dbfee3f59ea3f48c3ac03f8a307908c26ce.tar.zst wallabag-9d521dbfee3f59ea3f48c3ac03f8a307908c26ce.zip |
Merge pull request #3133 from wallabag/testing-travis-failure
Let's play !
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index fb32befb..e6cf96cb 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -69,6 +69,15 @@ before_install: | |||
69 | script: | 69 | script: |
70 | - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist | 70 | - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist |
71 | - ant prepare-$DB | 71 | - ant prepare-$DB |
72 | |||
73 | - echo "travis_fold:start:migrations" | ||
74 | - php bin/console doctrine:migrations:migrate --no-interaction --env=test | ||
75 | - echo "travis_fold:end:migrations" | ||
76 | |||
77 | - echo "travis_fold:start:fixtures" | ||
78 | - php bin/console doctrine:fixtures:load --no-interaction --env=test | ||
79 | - echo "travis_fold:end:fixtures" | ||
80 | |||
72 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi; | 81 | - if [[ $VALIDATE_TRANSLATION_FILE = '' ]]; then ./bin/simple-phpunit -v ; fi; |
73 | - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi; | 82 | - if [[ $CS_FIXER = run ]]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi; |
74 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; | 83 | - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; |