Skip to content

Commit 5e12756

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Use attribute for ignoring Laravel test
2 parents 98e8e27 + f22a644 commit 5e12756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ jobs:
405405
git rev-parse HEAD
406406
php /usr/bin/composer install --no-progress --ignore-platform-reqs
407407
# Hack to disable a test that hangs
408-
php -r '$c = file_get_contents("tests/Filesystem/FilesystemTest.php"); $c = str_replace("public function testSharedGet()", "/** @group skip */\n public function testSharedGet()", $c); file_put_contents("tests/Filesystem/FilesystemTest.php", $c);'
408+
php -r '$c = file_get_contents("tests/Filesystem/FilesystemTest.php"); $c = str_replace("public function testSharedGet()", "#[\\PHPUnit\\Framework\\Attributes\\Group('"'"'skip'"'"')]\n public function testSharedGet()", $c); file_put_contents("tests/Filesystem/FilesystemTest.php", $c);'
409409
export ASAN_OPTIONS=exitcode=139
410410
php vendor/bin/phpunit --exclude-group skip || EXIT_CODE=$?
411411
if [ ${EXIT_CODE:-0} -gt 128 ]; then

0 commit comments

Comments
 (0)