(self, pytester: Pytester)
| 915 | self.check_config_args(pytester) |
| 916 | |
| 917 | def test_addini_args_pyproject_toml(self, pytester: Pytester) -> None: |
| 918 | self.make_conftest_for_args(pytester) |
| 919 | pytester.makepyprojecttoml( |
| 920 | """ |
| 921 | [tool.pytest.ini_options] |
| 922 | args = ["123", "123 hello", "this"] |
| 923 | """ |
| 924 | ) |
| 925 | self.check_config_args(pytester) |
| 926 | |
| 927 | def check_config_args(self, pytester: Pytester) -> None: |
| 928 | config = pytester.parseconfig() |
nothing calls this directly
no test coverage detected