Skip to content

Commit

Permalink
don't stress out our poor http endpoint :'(
Browse files Browse the repository at this point in the history
  • Loading branch information
transistive committed Oct 9, 2024
1 parent ed066d2 commit 7735f1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Integration/EdgeCasesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down

0 comments on commit 7735f1e

Please sign in to comment.