Trace and store flows.
(self)
| 733 | self.store.commit() |
| 734 | |
| 735 | def _build_flows(self): |
| 736 | """Trace and store flows.""" |
| 737 | from code_review_graph.flows import store_flows, trace_flows |
| 738 | flows = trace_flows(self.store) |
| 739 | store_flows(self.store, flows) |
| 740 | |
| 741 | def test_list_flows_returns_ok(self): |
| 742 | result = list_flows(repo_root=str(self.root)) |
no test coverage detected