[TOOLS] Allow specifying a list of filters when running tests with `make`. When running `make test foobar` only the test `foobar` is executed (read the documentation for `phpunit --filter`)
parent
c862c9bf18
commit
73e772e576
2
Makefile
2
Makefile
|
@ -35,7 +35,7 @@ tooling-docker: .PHONY
|
|||
@cd docker/tooling && docker-compose up -d > /dev/null 2>&1
|
||||
|
||||
test: tooling-docker
|
||||
docker exec $(call translate-container-name,tooling_php_1) /var/tooling/coverage.sh $(call args,defaultstring)
|
||||
docker exec $(call translate-container-name,tooling_php_1) /var/tooling/coverage.sh $(call args,'.*')
|
||||
|
||||
doc-check:
|
||||
bin/php-doc-check src components plugins
|
||||
|
|
Loading…
Reference in New Issue