diff options
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; |