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

Examples:
  make test -- --filter 'method'
  make test -- directory
Este commit está contenido en:
Hugo Sales 2022-03-10 01:23:36 +00:00
padre 0ce5eba355
commit 8433771465
Firmado por usuario no fiable: someonewithpc
ID de clave GPG: 7D0C7EAFC9D835A0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -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