diff --git a/.travis.yml b/.travis.yml index d7da29132c..0cdfdc0b1c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,7 +50,6 @@ before_script: - "./bin/developer phraseanet:regenerate-sqlite" - "./bin/developer phraseanet:generate-js-fixtures" script: - - "./node_modules/.bin/grunt test" - | if [ "$TEST_SUITE" = "1" ]; then "./bin/phpunit" "tests/classes/"; diff --git a/circle.yml b/circle.yml index 482b96b96d..7e5229e461 100644 --- a/circle.yml +++ b/circle.yml @@ -42,5 +42,5 @@ database: test: override: - - case $CIRCLE_NODE_INDEX in 0) php -d memory_limit=-1 bin/phpunit --exclude-group legacy ;; 1) grunt test ;; 2) php -d memory_limit=-1 bin/phpunit --group legacy --exclude-group web ;; 3) php -d memory_limit=-1 bin/phpunit --group web ;; esac: + - case $CIRCLE_NODE_INDEX in 0) php -d memory_limit=-1 bin/phpunit --exclude-group legacy ;; 1) php -d memory_limit=-1 bin/phpunit --group legacy --exclude-group web ;; 2) php -d memory_limit=-1 bin/phpunit --group web ;; esac: parallel: true