Skip to content

Commit 8b18349

Browse files
author
David Alger
committed
Fix the matrix exclude list
1 parent 0be3a79 commit 8b18349

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .travis.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
- TEST_SUITE=unit
2121
- TEST_SUITE=integration INTEGRATION_INDEX=1
2222
- TEST_SUITE=integration INTEGRATION_INDEX=2
23-
- TEST_SUITE=static TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"'
23+
- TEST_SUITE=static
2424
cache:
2525
apt: true
2626
directories: $HOME/.composer/cache
@@ -33,4 +33,7 @@ matrix:
3333
before_install: ./dev/travis/before_install.sh
3434
install: composer install --no-interaction --prefer-dist
3535
before_script: ./dev/travis/before_script.sh
36-
script: cd dev/tests/$TEST_SUITE && phpunit $TEST_FILTER
36+
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

Comments
 (0)