(graphscope_session)
| 257 | |
| 258 | @pytest.fixture(scope="module") |
| 259 | def arrow_property_graph_undirected(graphscope_session): |
| 260 | g = load_arrow_property_graph(graphscope_session, directed=False) |
| 261 | yield g |
| 262 | del g |
| 263 | |
| 264 | |
| 265 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected