Skip to content

Commit 11bf53e

Browse files
committed
1 parent 3d14230 commit 11bf53e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/Integration/Factory/FirestoreTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ final class FirestoreTest extends IntegrationTestCase
2121
#[Test]
2222
public function itUsesTheDefaultDatabaseByDefault(): void
2323
{
24+
// @see https://github.com/grpc/grpc/issues/38184
25+
// @see https://github.com/googleapis/gax-php/issues/584
26+
// @see https://www.php.net/manual/en/info.configuration.php#ini.zend.reserved-stack-size
27+
$this->markTestSkipped('Skipped because of an infinite recursion with certain PHP/gRPC versions.');
28+
// @phpstan-ignore-next-line
2429
$collection = __FUNCTION__;
2530
$documentName = __FUNCTION__.self::randomString();
2631

@@ -40,6 +45,11 @@ public function itUsesTheDefaultDatabaseByDefault(): void
4045
#[Test]
4146
public function testItCannotConnectToAnUnknownDatabase(): void
4247
{
48+
// @see https://github.com/grpc/grpc/issues/38184
49+
// @see https://github.com/googleapis/gax-php/issues/584
50+
// @see https://www.php.net/manual/en/info.configuration.php#ini.zend.reserved-stack-size
51+
$this->markTestSkipped('Skipped because of an infinite recursion with certain PHP/gRPC versions.');
52+
// @phpstan-ignore-next-line
4353
$name = self::randomString();
4454

4555
$database = self::$factory->createFirestore($name)->database();

0 commit comments

Comments
 (0)