Skip to content

Commit

Permalink
Merge branch '6.4' into 7.2
Browse files Browse the repository at this point in the history
* 6.4:
  skip failing Semaphore component tests on GitHub Actions with PHP 8.5
  Update GetSetMethodNormalizer.php
  [Stopwatch] Fix StopWatchEvent never throws InvalidArgumentException
  • Loading branch information
xabbuh committed Feb 24, 2025
2 parents 533921b + c523544 commit fbcd2c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/Store/RelayStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ protected function setUp(): void

public static function setUpBeforeClass(): void
{
if (\PHP_VERSION_ID <= 80500 && isset($_SERVER['GITHUB_ACTIONS'])) {
self::markTestSkipped('Test segfaults on PHP 8.5');
}

try {
new Relay(...explode(':', getenv('REDIS_HOST')));
} catch (\Relay\Exception $e) {
Expand Down

0 comments on commit fbcd2c0

Please sign in to comment.