(graphscope_session)
| 863 | |
| 864 | @pytest.fixture(scope="module") |
| 865 | def ldbc_graph_undirected(graphscope_session): |
| 866 | graph = load_ldbc( |
| 867 | graphscope_session, |
| 868 | prefix="{}/ldbc_sample".format(test_repo_dir), |
| 869 | directed=False, |
| 870 | ) |
| 871 | yield graph |
| 872 | del graph |
| 873 | |
| 874 | |
| 875 | @pytest.fixture(scope="module") |