(self, pytester: Pytester, mock_timing)
| 973 | assert "4 passed" in lines[2] |
| 974 | |
| 975 | def test_calls_showall(self, pytester: Pytester, mock_timing) -> None: |
| 976 | pytester.makepyfile(self.source) |
| 977 | result = pytester.runpytest_inprocess("--durations=0") |
| 978 | assert result.ret == 0 |
| 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) |
nothing calls this directly
no test coverage detected