()
| 39 | |
| 40 | @pytest.fixture(scope="module") |
| 41 | def sess(): |
| 42 | session = graphscope.session(cluster_type="hosts", num_workers=2, mode="lazy") |
| 43 | session.as_default() |
| 44 | yield session |
| 45 | session.close() |
| 46 | |
| 47 | |
| 48 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected