From 73e772e5767cc8daf0793823ed2b047394737f41 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Thu, 28 Oct 2021 17:24:43 +0100 Subject: [PATCH] [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`) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 60acf29f07..218076dced 100644 --- a/Makefile +++ b/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