[TOOLING][TESTS] Allow specifying any phpunit flag when invoking make
Examples: make test -- --filter 'method' make test -- directory
This commit is contained in:
parent
0ce5eba355
commit
8433771465
|
@ -10,5 +10,5 @@ if [ "$#" -eq 0 ] || [ -z "$*" ]; then
|
||||||
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report
|
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report
|
||||||
else
|
else
|
||||||
echo "Running with filter"
|
echo "Running with filter"
|
||||||
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report --filter "$*"
|
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report $*
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue
Block a user