Skip to content

Commit

Permalink
Remove xdebug from PHPUnit command in Makefile
Browse files Browse the repository at this point in the history
The xdebug extension is no longer started with the PHPUnit command used for running functional tests. This change reduces overhead and improves performance during test execution.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Dec 4, 2024
1 parent 3b31045 commit f697703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ test-run-functional: debug-print-env
docker-compose run --rm php-cli php bin/doctrine orm:schema-tool:drop --force
docker-compose run --rm php-cli php bin/doctrine orm:schema-tool:create
docker-compose run --rm php-cli php bin/doctrine orm:schema-tool:update --dump-sql
docker-compose run --rm php-cli php -dxdebug.start_with_request=yes vendor/bin/phpunit --testsuite=functional_tests --display-warnings --testdox
docker-compose run --rm php-cli php vendor/bin/phpunit --testsuite=functional_tests --display-warnings --testdox

# Запустить один функциональный тест с дебагером
run-one-functional-test: debug-print-env
Expand Down

0 comments on commit f697703

Please sign in to comment.