Skip to content

Commit

Permalink
Fix Behat error reporting once again
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Nov 26, 2024
1 parent e7cf2a0 commit 9da13a8
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 9da13a8

Please sign in to comment.