(self, pytester: Pytester, mock_timing)
| 1033 | result.stdout.no_fnmatch_line("*duration*") |
| 1034 | |
| 1035 | def test_with_not(self, pytester: Pytester, mock_timing) -> None: |
| 1036 | pytester.makepyfile(self.source) |
| 1037 | result = pytester.runpytest_inprocess("-k not 1") |
| 1038 | assert result.ret == 0 |
| 1039 | |
| 1040 | |
| 1041 | class TestDurationsWithFixture: |
nothing calls this directly
no test coverage detected