We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0be3a79 commit 8b18349Copy full SHA for 8b18349
.travis.yml
@@ -20,7 +20,7 @@ env:
20
- TEST_SUITE=unit
21
- TEST_SUITE=integration INTEGRATION_INDEX=1
22
- TEST_SUITE=integration INTEGRATION_INDEX=2
23
- - TEST_SUITE=static TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"'
+ - TEST_SUITE=static
24
cache:
25
apt: true
26
directories: $HOME/.composer/cache
@@ -33,4 +33,7 @@ matrix:
33
before_install: ./dev/travis/before_install.sh
34
install: composer install --no-interaction --prefer-dist
35
before_script: ./dev/travis/before_script.sh
36
-script: cd dev/tests/$TEST_SUITE && phpunit $TEST_FILTER
+script:
37
+ - cd dev/tests/$TEST_SUITE
38
+ - test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true
39
+ - phpunit $TEST_FILTER
0 commit comments