(self, pytester: Pytester, mock_timing)
| 1015 | assert found_test_numbers == set(expected_test_numbers) |
| 1016 | |
| 1017 | def test_with_deselected(self, pytester: Pytester, mock_timing) -> None: |
| 1018 | pytester.makepyfile(self.source) |
| 1019 | result = pytester.runpytest_inprocess("--durations=2", "-k test_3") |
| 1020 | assert result.ret == 0 |
| 1021 | |
| 1022 | result.stdout.fnmatch_lines(["*durations*", "*call*test_3*"]) |
| 1023 | |
| 1024 | def test_with_failing_collection(self, pytester: Pytester, mock_timing) -> None: |
| 1025 | pytester.makepyfile(self.source) |
nothing calls this directly
no test coverage detected