(self, pytester: Pytester)
| 721 | self.check_config_linelist(pytester) |
| 722 | |
| 723 | def test_addini_linelist_pprojecttoml(self, pytester: Pytester) -> None: |
| 724 | self.make_conftest_for_linelist(pytester) |
| 725 | pytester.makepyprojecttoml( |
| 726 | """ |
| 727 | [tool.pytest.ini_options] |
| 728 | xy = ["123 345", "second line"] |
| 729 | """ |
| 730 | ) |
| 731 | self.check_config_linelist(pytester) |
| 732 | |
| 733 | def check_config_linelist(self, pytester: Pytester) -> None: |
| 734 | config = pytester.parseconfig() |
nothing calls this directly
no test coverage detected