Skip to content

Commit

Permalink
Adjust requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
o-ba committed Aug 9, 2023
1 parent a409030 commit be8ecdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build/testing-docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -329,12 +329,12 @@ services:
php -v | grep '^PHP';
if [ ${PHP_XDEBUG_ON} -eq 0 ]; then
XDEBUG_MODE=\"off\" \
bin/phpunit -c Web/typo3conf/ext/make/Build/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
bin/phpunit -c Build/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
else
DOCKER_HOST=`route -n | awk '/^0.0.0.0/ { print $$2 }'`
XDEBUG_MODE=\"debug,develop\" \
XDEBUG_TRIGGER=\"foo\" \
XDEBUG_CONFIG=\"client_port=${PHP_XDEBUG_PORT} client_host=$${DOCKER_HOST}\" \
bin/phpunit -c Web/typo3conf/ext/make/Build/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
bin/phpunit -c Build/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
fi
"

0 comments on commit be8ecdf

Please sign in to comment.