@@ -92,7 +92,7 @@ services:
9292 fi
9393 composer prepare-tests-10 && composer prepare-tests
9494 else
95- composer remove typo3/cms* --dev --no-progress --no-interaction && composer config --no-interaction --no-plugins allow-plugins.sbuerk/typo3-cmscomposerinstallers-testingframework-bridge true && composer require typo3/cms-install:12.*.*@dev typo3/cms-fluid-styled-content:12.*.*@dev sbuerk/typo3-cmscomposerinstallers-testingframework-bridge:^0.0.1 --dev -W --no-progress --no-interaction
95+ composer require typo3/cms-install:^ 12.4 typo3/cms-fluid-styled-content:^ 12.4 --dev -W --no-progress --no-interaction
9696 composer prepare-tests
9797 fi
9898 "
@@ -147,7 +147,7 @@ services:
147147 typo3DatabaseUsername : root
148148 typo3DatabasePassword : funcp
149149 typo3DatabaseHost : mariadb10
150- working_dir : ${ROOT_DIR}/.Build
150+ working_dir : ${ROOT_DIR}
151151 command : >
152152 /bin/sh -c "
153153 if [ ${SCRIPT_VERBOSE} -eq 1 ]; then
@@ -161,13 +161,13 @@ services:
161161 php -v | grep '^PHP';
162162 if [ ${PHP_XDEBUG_ON} -eq 0 ]; then
163163 export XDEBUG_MODE=\"off\"
164- bin/phpunit -c Web/typo3conf/ext/menus/ Build/phpunit/FunctionalTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
164+ .Build/ bin/phpunit -c Build/phpunit/FunctionalTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
165165 else
166166 DOCKER_HOST=`route -n | awk '/^0.0.0.0/ { print $$2 }'`
167167 export XDEBUG_MODE=\"debug,develop\" \
168168 XDEBUG_TRIGGER=\"foo\" \
169169 XDEBUG_CONFIG=\"client_port=${PHP_XDEBUG_PORT} client_host=$${DOCKER_HOST}\"
170- bin/phpunit -c Web/typo3conf/ext/menus/ Build/phpunit/FunctionalTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
170+ .Build/ bin/phpunit -c Build/phpunit/FunctionalTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
171171 fi
172172 "
173173 lint :
@@ -213,7 +213,7 @@ services:
213213 - ${HOST_HOME}:${HOST_HOME}
214214 - /etc/passwd:/etc/passwd:ro
215215 - /etc/group:/etc/group:ro
216- working_dir : ${ROOT_DIR}/.Build
216+ working_dir : ${ROOT_DIR}
217217 command : >
218218 /bin/sh -c "
219219 if [ ${SCRIPT_VERBOSE} -eq 1 ]; then
@@ -222,12 +222,12 @@ services:
222222 php -v | grep '^PHP';
223223 if [ ${PHP_XDEBUG_ON} -eq 0 ]; then
224224 XDEBUG_MODE=\"off\" \
225- bin/phpunit -c Web/typo3conf/ext/menus/ Build/phpunit/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
225+ .Build/ bin/phpunit -c Build/phpunit/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
226226 else
227227 DOCKER_HOST=`route -n | awk '/^0.0.0.0/ { print $$2 }'`
228228 XDEBUG_MODE=\"debug,develop\" \
229229 XDEBUG_TRIGGER=\"foo\" \
230230 XDEBUG_CONFIG=\"client_port=${PHP_XDEBUG_PORT} client_host=$${DOCKER_HOST}\" \
231- bin/phpunit -c Web/typo3conf/ext/ menus/Build/phpunit/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
231+ .Build/ bin/phpunit -c menus/Build/phpunit/UnitTests.xml ${EXTRA_TEST_OPTIONS} ${TEST_FILE};
232232 fi
233233 "
0 commit comments