(graphscope_session)
| 711 | |
| 712 | @pytest.fixture(scope="module") |
| 713 | def dynamic_project_graph(graphscope_session): |
| 714 | with default_session(graphscope_session): |
| 715 | g = nx.Graph() |
| 716 | g.add_edges_from([(1, 2), (2, 3)], weight=3) |
| 717 | pg = g.project_to_simple(e_prop="weight") |
| 718 | yield pg |
| 719 | |
| 720 | |
| 721 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected