diff --git a/tests/Integration/EdgeCasesTest.php b/tests/Integration/EdgeCasesTest.php index ad62c098..cc61895e 100644 --- a/tests/Integration/EdgeCasesTest.php +++ b/tests/Integration/EdgeCasesTest.php @@ -77,6 +77,10 @@ public function testComplex(): void public function testRunALotOfStatements(): void { + if (str_starts_with($_ENV['CONNECTION'] ?? '', 'http')) { + $this->markTestSkipped('HTTP mass queries overload tiny neo4j instances'); + } + $persons = $this->getSession()->run('MATCH (p:Person) RETURN p'); $movies = $this->getSession()->run('MATCH (m:Movie) RETURN m');