We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f7862e commit 247b124Copy full SHA for 247b124
tests/Integration/EdgeCasesTest.php
@@ -81,6 +81,10 @@ public function testRunALotOfStatements(): void
81
$this->markTestSkipped('HTTP mass queries overload tiny neo4j instances');
82
}
83
84
+ if (str_contains($_ENV['CONNECTION'] ?? '', 'databases.neo4j.io')) {
85
+ $this->markTestSkipped('We assume neo4j aura shuts down connections that are too demanding');
86
+ }
87
+
88
$persons = $this->getSession()->run('MATCH (p:Person) RETURN p');
89
$movies = $this->getSession()->run('MATCH (m:Movie) RETURN m');
90
0 commit comments