Skip to content

Commit 4bc7d0b

Browse files
committed
ci: skip redis cache test on windows ci
1 parent 314367a commit 4bc7d0b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/Integration/Cache/RedisCacheTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ public function test_php_redis_cache(): void
1919
$this->markTestSkipped('The `redis` extension is not loaded.');
2020
}
2121

22+
if (PHP_OS_FAMILY === 'Windows') {
23+
$this->markTestSkipped('Redis is not configured on Windows CI.');
24+
}
25+
2226
$redis = new PhpRedisClient(
2327
client: new \Redis(),
2428
config: new RedisConfig(

0 commit comments

Comments
 (0)