Skip to content

Commit 3c93bba

Browse files
committed
Merge branch '6.4' into 7.3
* 6.4: register attribute loader arguments in a forward-compatible way mark test using a Redis connection as an integration test ensure compatibility with Relay extension 0.20.0 [DependencyInjection] Fix `query_string` env processor for URLs without query string [DependencyInjection] Fix state corruption in PhpFileLoader during recursive imports [FrameworkBundle] Add missing `useAttributeAsKey` calls [DependencyInjection] Fix loose validation in #[Autowire] attribute [HttpClient] Fix releasing uploaded stream resources
2 parents c89bacd + a62f325 commit 3c93bba

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Tests/Store/RelayStoreTest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,18 @@
1515

1616
/**
1717
* @requires extension relay
18+
*
19+
* @group integration
1820
*/
1921
class RelayStoreTest extends AbstractRedisStoreTestCase
2022
{
2123
protected function setUp(): void
2224
{
23-
$this->getRedisConnection()->flushDB();
25+
try {
26+
$this->getRedisConnection()->flushDB();
27+
} catch (\Relay\Exception $e) {
28+
self::markTestSkipped($e->getMessage());
29+
}
2430
}
2531

2632
public static function setUpBeforeClass(): void

0 commit comments

Comments
 (0)