(self, pytester: Pytester, mock_timing)
| 979 | TestDurations.check_tests_in_output(result.stdout.lines, 2, 3) |
| 980 | |
| 981 | def test_calls_showall_verbose(self, pytester: Pytester, mock_timing) -> None: |
| 982 | pytester.makepyfile(self.source) |
| 983 | result = pytester.runpytest_inprocess("--durations=0", "-vv") |
| 984 | assert result.ret == 0 |
| 985 | TestDurations.check_tests_in_output(result.stdout.lines, 1, 2, 3) |
| 986 | |
| 987 | def test_calls_showall_durationsmin(self, pytester: Pytester, mock_timing) -> None: |
| 988 | pytester.makepyfile(self.source) |
nothing calls this directly
no test coverage detected