We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d4542b commit c00fb02Copy full SHA for c00fb02
makefile
@@ -1,6 +1,7 @@
1
PHP ?= '8.1'
2
UP ?= 1
3
DOWN ?= 1
4
+TEST ?=
5
6
docs:
7
wget http://apigen.org/apigen.phar
@@ -19,5 +20,5 @@ down:
19
20
21
test:
22
[ $(UP) -eq 1 ] && make up || true
- $(eval cmd='docker-compose run $(PHP) env XDEBUG_MODE=coverage vendor/bin/phpunit')
23
+ $(eval cmd='docker-compose run $(PHP) env XDEBUG_MODE=coverage vendor/bin/phpunit $(TEST)')
24
eval $(cmd); status=$$?; [ $(DOWN) -eq 1 ] && make down; exit $$status
0 commit comments