8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a53992 commit 0052542Copy full SHA for 0052542
src/Symfony/Component/Semaphore/Tests/Store/RelayStoreTest.php
@@ -25,6 +25,10 @@ protected function setUp(): void
25
26
public static function setUpBeforeClass(): void
27
{
28
+ if (\PHP_VERSION_ID <= 80500 && isset($_SERVER['GITHUB_ACTIONS'])) {
29
+ self::markTestSkipped('Test segfaults on PHP 8.5');
30
+ }
31
+
32
try {
33
new Relay(...explode(':', getenv('REDIS_HOST')));
34
} catch (\Relay\Exception $e) {
0 commit comments