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 @@ -324,12 +324,15 @@ jobs:
324324 run : |
325325 cd ${HOME}/build/project
326326 mkdir -p behat-output
327- docker compose exec -T --user www-data app sh -c '
328- vendor/bin/behat \
329- --group-count=${{ needs.setup-jobs.outputs.job-count }} \
330- --group-offset=${{ matrix.offset }} \
331- ${{ inputs.test-suite }} \
332- --process=1
327+ # run behat inside the app container, with volume mount
328+ docker compose run --rm \
329+ -v ${HOME}/build/project/behat-output:/var/www/behat-output \
330+ --user www-data app sh -c '
331+ vendor/bin/ibexabehat \
332+ --group-count=${{ needs.setup-jobs.outputs.job-count }} \
333+ --group-offset=${{ matrix.offset }} \
334+ ${{ inputs.test-suite }} \
335+ --process=1
333336 '
334337 continue-on-error : false
335338
You can’t perform that action at this time.
0 commit comments