Skip to content

Commit 9da13a8

Browse files
committed
Fix Behat error reporting once again
1 parent e7cf2a0 commit 9da13a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/reusable-testing.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,8 @@ jobs:
319319
uses: shivammathur/setup-php@v2
320320
with:
321321
php-version: '${{ matrix.php }}'
322-
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On
322+
# Disable error reporting for Behat tests on PHP 8.4+, as long as Behat is not upgraded to a newer version.
323+
ini-values: ${{ matrix.php != '8.4' && matrix.php != 'nightly' && 'zend.assertions=1, error_reporting=-1, display_errors=On' || '' }}
323324
extensions: gd, imagick, mysql, zip
324325
coverage: none
325326
tools: composer

0 commit comments

Comments
 (0)