(self, pytester: Pytester)
| 684 | self.check_config_args(pytester) |
| 685 | |
| 686 | def test_addini_args_pyproject_toml(self, pytester: Pytester) -> None: |
| 687 | self.make_conftest_for_args(pytester) |
| 688 | pytester.makepyprojecttoml( |
| 689 | """ |
| 690 | [tool.pytest.ini_options] |
| 691 | args = ["123", "123 hello", "this"] |
| 692 | """ |
| 693 | ) |
| 694 | self.check_config_args(pytester) |
| 695 | |
| 696 | def check_config_args(self, pytester: Pytester) -> None: |
| 697 | config = pytester.parseconfig() |
nothing calls this directly
no test coverage detected