We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e8aea commit 035a655Copy full SHA for 035a655
1 file changed
.github/workflows/testing.yml
@@ -327,20 +327,20 @@ jobs:
327
WP_CLI_TEST_DBSOCKET: '${{ steps.setup-mysql.outputs.base-dir }}/tmp/mysql.sock'
328
WP_CLI_TEST_COVERAGE: ${{ matrix.coverage }}
329
run: |
330
- ARGS=()
+ ARGS=""
331
332
if [[ $WP_CLI_TEST_COVERAGE == 'true' ]]; then
333
# The flag was only added in v3.17.0
334
if composer behat -- --help 2>/dev/null | grep xdebug; then
335
- ARGS+=("--xdebug")
+ ARGS+=" --xdebug"
336
fi
337
338
339
if [[ $RUNNER_DEBUG == '1' ]]; then
340
- ARGS+=("--format=pretty")
+ ARGS+=" --format=pretty"
341
342
343
- composer behat -- "${ARGS[@]}" || composer behat-rerun -- "${ARGS[@]}"
+ composer behat -- $ARGS || composer behat-rerun -- $ARGS
344
345
- name: Retrieve list of coverage files
346
id: coverage_files
0 commit comments