From 24091716ce236310af8595a523a9933630f93971 Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Wed, 11 Apr 2018 19:17:29 +0200 Subject: [PATCH] Skip Setup group --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 95e5f55d08..0383de5ecf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,6 +44,6 @@ script: - until curl -s $SIMPLETEST_BASE_URL; do true; done > /dev/null # Skip core/tests/Drupal/Tests/ComposerIntegrationTest.php because web/ has no composer.json # Ignore PageCache group temporarily, @see https://www.drupal.org/node/2770673 - - ./../vendor/bin/phpunit -c core --testsuite unit --exclude-group Composer,DependencyInjection,PageCache + - ./../vendor/bin/phpunit -c core --testsuite unit --exclude-group Composer,DependencyInjection,PageCache,Setup - ./../vendor/bin/drush - if [[ $RELEASE = stable ]]; then ./../vendor/bin/drupal; fi;