(self, pytester: Pytester)
| 698 | |
| 699 | class TestConfigCmdlineParsing: |
| 700 | def test_parsing_again_fails(self, pytester: Pytester) -> None: |
| 701 | config = pytester.parseconfig() |
| 702 | with pytest.raises(AssertionError): |
| 703 | config.parse([]) |
| 704 | |
| 705 | def test_explicitly_specified_config_file_is_loaded( |
| 706 | self, pytester: Pytester |
nothing calls this directly
no test coverage detected