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 @@ -299,12 +299,15 @@ jobs:
299299 run : |
300300 cd ${HOME}/build/project
301301 mkdir -p behat-output
302- docker compose exec -T --user www-data app sh -c '
303- vendor/bin/behat \
304- --group-count=${{ needs.setup-jobs.outputs.job-count }} \
305- --group-offset=${{ matrix.offset }} \
306- ${{ inputs.test-suite }} \
307- --process=1
302+ # run behat inside the app container, with volume mount
303+ docker compose run --rm \
304+ -v ${HOME}/build/project/behat-output:/var/www/behat-output \
305+ --user www-data app sh -c '
306+ vendor/bin/ibexabehat \
307+ --group-count=${{ needs.setup-jobs.outputs.job-count }} \
308+ --group-offset=${{ matrix.offset }} \
309+ ${{ inputs.test-suite }} \
310+ --process=1
308311 '
309312 continue-on-error : false
310313
You can’t perform that action at this time.
0 commit comments