[TOOLING][TESTS] Allow specifying any phpunit flag when invoking make

Examples:
  make test -- --filter 'method'
  make test -- directory
This commit is contained in:
Hugo Sales 2022-03-10 01:23:36 +00:00
父節點 0ce5eba355
當前提交 8433771465
由不信任的使用者簽署: someonewithpc
GPG 金鑰 ID: 7D0C7EAFC9D835A0
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

@ -10,5 +10,5 @@ if [ "$#" -eq 0 ] || [ -z "$*" ]; then
vendor/bin/simple-phpunit -vvv --coverage-html .test_coverage_report
else
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