File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -329,12 +329,15 @@ jobs:
329329 run : |
330330 cd ${HOME}/build/project
331331 mkdir -p behat-output
332- docker compose exec -T --user www-data app sh -c '
333- vendor/bin/behat \
334- --group-count=${{ needs.setup-jobs.outputs.job-count }} \
335- --group-offset=${{ matrix.offset }} \
336- ${{ inputs.test-suite }} \
337- --process=1
332+ # run behat inside the app container, with volume mount
333+ docker compose run --rm \
334+ -v ${HOME}/build/project/behat-output:/var/www/behat-output \
335+ --user www-data app sh -c '
336+ vendor/bin/ibexabehat \
337+ --group-count=${{ needs.setup-jobs.outputs.job-count }} \
338+ --group-offset=${{ matrix.offset }} \
339+ ${{ inputs.test-suite }} \
340+ --process=1
338341 '
339342 continue-on-error : false
340343
You can’t perform that action at this time.
0 commit comments