From 2f9dfdedc0363805796431fd29a80921b3b210d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 20 Oct 2019 15:31:16 +0200 Subject: [PATCH] Split long command into different commands. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5f1b1e16..b204e366 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,9 +21,9 @@ install: # Migration is just for testing if it work, it is overwritten immediately - php bin/console --env test doctrine:migrations:migrate -n # Load fixtures (workaround https://github.com/doctrine/DoctrineFixturesBundle/issues/50) - - bin/console --env test doctrine:schema:drop --force \ - && bin/console --env test doctrine:schema:update --force \ - && bin/console --env test doctrine:fixtures:load -n + - bin/console --env test doctrine:schema:drop --force + - bin/console --env test doctrine:schema:update --force + - bin/console --env test doctrine:fixtures:load -n script: - php bin/phpunit