(self, pytester: Pytester, mock_timing)
| 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) |
| 989 | result = pytester.runpytest_inprocess("--durations=0", "--durations-min=0.015") |
| 990 | assert result.ret == 0 |
| 991 | TestDurations.check_tests_in_output(result.stdout.lines, 3) |
| 992 | |
| 993 | def test_calls_showall_durationsmin_verbose( |
| 994 | self, pytester: Pytester, mock_timing |
nothing calls this directly
no test coverage detected