Skip to content

Commit 36b7692

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Use attribute for ignoring Laravel test
2 parents 500490d + 5e12756 commit 36b7692

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
@@ -402,7 +402,7 @@ jobs:
402402
git rev-parse HEAD
403403
php /usr/bin/composer install --no-progress --ignore-platform-reqs
404404
# Hack to disable a test that hangs
405-
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);'
405+
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);'
406406
export ASAN_OPTIONS=exitcode=139
407407
php vendor/bin/phpunit --exclude-group skip || EXIT_CODE=$?
408408
if [ ${EXIT_CODE:-0} -gt 128 ]; then

0 commit comments

Comments
 (0)