From 8ca8fa143c2e9cc030a8413211544534690b2d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Sat, 8 Nov 2014 00:58:09 +0100 Subject: [PATCH] fix travis.yml --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index e481a187a..f1f370ea6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,13 +13,13 @@ addons: install: - composer install --dev - - cp Tests/Fixtures/App/config/parameters.travis.yml Tests/Fixtures/App/config/parameters.yml + - cp Tests/Fixtures/App/app/config/parameters.travis.yml Tests/Fixtures/App/app/config/parameters.yml before_script: - psql -c 'create database test0;' -U postgres - - php Tests/Fixtures/App/console --env=test cache:warmup - - php Tests/Fixtures/App/console doctrine:schema:create --env=test --no-interaction - - php Tests/Fixtures/App/console doctrine:fixtures:load --env=test --no-interaction + - php Tests/Fixtures/App/app/console.php --env=test cache:warmup + - php Tests/Fixtures/App/app/console.php doctrine:schema:create --env=test --no-interaction + - php Tests/Fixtures/App/app/console.php doctrine:fixtures:load --env=test --no-interaction script: phpunit --coverage-text