(repo_path)
| 574 | |
| 575 | |
| 576 | def _build_store(repo_path): |
| 577 | from code_review_graph.graph import GraphStore |
| 578 | from code_review_graph.incremental import full_build, get_db_path |
| 579 | |
| 580 | store = GraphStore(get_db_path(repo_path)) |
| 581 | full_build(repo_path, store) |
| 582 | return store |
| 583 | |
| 584 | |
| 585 | def _mock_config(**extra): |
no test coverage detected