Start a trace for a run.
(self, run: Run)
| 39 | """Persist a run.""" |
| 40 | |
| 41 | def _start_trace(self, run: Run) -> None: |
| 42 | """Start a trace for a run.""" |
| 43 | super()._start_trace(run) |
| 44 | self._on_run_create(run) |
| 45 | |
| 46 | def _end_trace(self, run: Run) -> None: |
| 47 | """End a trace for a run.""" |
no test coverage detected