We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a47862 commit b5d3ec6Copy full SHA for b5d3ec6
.travis.yml
@@ -59,5 +59,9 @@ script:
59
- test $TEST_SUITE = "functional" && TEST_FILTER='dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php' || true
60
61
# The scripts for grunt/phpunit type tests
62
- - if [ $TEST_SUITE != "js" ]; then phpunit -c dev/tests/$TEST_SUITE $TEST_FILTER; fi
63
- - if [ $TEST_SUITE == "js" ]; then grunt $GRUNT_COMMAND; fi
+ - if [ $TEST_SUITE == "functional" ]; then
+ dev/tests/functional/vendor/phpunit/phpunit/phpunit --debug --verbose -c dev/tests/$TEST_SUITE $TEST_FILTER;
64
+ else
65
+ if [ $TEST_SUITE != "js" ]; then phpunit --debug --verbose -c dev/tests/$TEST_SUITE $TEST_FILTER; fi
66
+ if [ $TEST_SUITE == "js" ]; then grunt $GRUNT_COMMAND; fi
67
+ fi
0 commit comments