(csv_path)
| 115 | assert run2.returncode == 0, run2.stderr |
| 116 | |
| 117 | def _cuts(csv_path): |
| 118 | # First line is the cut-list summary; extract it for comparison. |
| 119 | return csv_path.read_text().splitlines()[0] |
| 120 | |
| 121 | assert _cuts(tmp_path / "run1.csv") == _cuts(tmp_path / "run2.csv"), ( |
| 122 | "Cut list differs between stats-producing run and stats-consuming run." |
no outgoing calls
no test coverage detected