(self, pytester: Pytester, mock_timing)
| 909 | raise AssertionError(f"not found {x} {y}") |
| 910 | |
| 911 | def test_with_deselected(self, pytester: Pytester, mock_timing) -> None: |
| 912 | pytester.makepyfile(self.source) |
| 913 | result = pytester.runpytest_inprocess("--durations=2", "-k test_3") |
| 914 | assert result.ret == 0 |
| 915 | |
| 916 | result.stdout.fnmatch_lines(["*durations*", "*call*test_3*"]) |
| 917 | |
| 918 | def test_with_failing_collection(self, pytester: Pytester, mock_timing) -> None: |
| 919 | pytester.makepyfile(self.source) |
nothing calls this directly
no test coverage detected