(graphscope_session)
| 703 | |
| 704 | @pytest.fixture(scope="module") |
| 705 | def dynamic_property_graph(graphscope_session): |
| 706 | with default_session(graphscope_session): |
| 707 | g = nx.Graph() |
| 708 | g.add_edges_from([(1, 2), (2, 3)], weight=3) |
| 709 | yield g |
| 710 | |
| 711 | |
| 712 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected