Skip to content

Commit adb0292

Browse files
committed
Fix v2 cypher setup
return generator of container instead of nested generator
1 parent cab458f commit adb0292

File tree

1 file changed

+1
-1
lines changed
  • graphdatascience/tests/integrationV2/procedure_surface/cypher

1 file changed

+1
-1
lines changed

graphdatascience/tests/integrationV2/procedure_surface/cypher/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
def gds_plugin_container(
1818
logs_dir: Path, tmp_path_factory: pytest.TempPathFactory
1919
) -> Generator[Neo4jContainer, None, None]:
20-
return start_gds_plugin_database(logs_dir, tmp_path_factory)
20+
yield from start_gds_plugin_database(logs_dir, tmp_path_factory)
2121

2222

2323
@pytest.fixture(scope="package")

0 commit comments

Comments
 (0)