(pytester: Pytester)
| 76 | |
| 77 | |
| 78 | def test_parseconfig(pytester: Pytester) -> None: |
| 79 | config1 = pytester.parseconfig() |
| 80 | config2 = pytester.parseconfig() |
| 81 | assert config2 is not config1 |
| 82 | |
| 83 | |
| 84 | def test_pytester_runs_with_plugin(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected