File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -134,11 +134,11 @@ phpstan: ## [QA] Executes <phpstan> inside the container <filter=[app|path]>
134134tests : # # [QA] Executes <phpunit> inside the container <testsuite=[Unit|...]> <filter=[.|method + filename]>
135135 @$(eval testsuite ?= 'Unit')
136136 @$(eval filter ?= '.')
137- @vendor/bin/phpunit --testsuite=$(testsuite ) --filter=$(filter ) --configuration=phpunit.xml --coverage-text --testdox --colors --order-by=random --random-order-seed=$(RANDOM_ORDER_SEED )
137+ @XDEBUG_MODE=off vendor/bin/phpunit --testsuite=$(testsuite ) --filter=$(filter ) --configuration=phpunit.xml --coverage-text --testdox --colors --order-by=random --random-order-seed=$(RANDOM_ORDER_SEED )
138138 $(call taskDone)
139139
140140.PHONY : coverage
141141coverage : # # [QA] Executes <phpunit with pcov coverage support> inside the container
142142 @rm -Rf /coverage/*
143- @vendor/bin/phpunit --coverage-html=/coverage --configuration=phpunit.xml --coverage-text --testdox --colors --order-by=random --random-order-seed=$(RANDOM_ORDER_SEED )
143+ @XDEBUG_MODE=off vendor/bin/phpunit --coverage-html=/coverage --configuration=phpunit.xml --coverage-text --testdox --colors --order-by=random --random-order-seed=$(RANDOM_ORDER_SEED )
144144 $(call taskDone)
You can’t perform that action at this time.
0 commit comments