Skip to content

Commit

Permalink
Merge pull request #117 from wp-cli/fix/behat-error-reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy authored Nov 26, 2024
2 parents e7cf2a0 + 9da13a8 commit 8a7dd61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/reusable-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,8 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '${{ matrix.php }}'
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
# Disable error reporting for Behat tests on PHP 8.4+, as long as Behat is not upgraded to a newer version.
ini-values: ${{ matrix.php != '8.4' && matrix.php != 'nightly' && 'zend.assertions=1, error_reporting=-1, display_errors=On' || '' }}
extensions: gd, imagick, mysql, zip
coverage: none
tools: composer
Expand Down

0 comments on commit 8a7dd61

Please sign in to comment.