(pytester: Pytester)
| 71 | |
| 72 | @pytest.fixture |
| 73 | def broken_pytester(pytester: Pytester) -> Pytester: |
| 74 | pytester.makepyfile( |
| 75 | working_testfile="def test_proper(): assert 1", broken_testfile="foobar" |
| 76 | ) |
| 77 | return pytester |
| 78 | |
| 79 | |
| 80 | def _strip_resource_warnings(lines): |
nothing calls this directly
no test coverage detected