(self, pytester: Pytester)
| 905 | ) |
| 906 | |
| 907 | def test_addini_args_ini_files(self, pytester: Pytester) -> None: |
| 908 | self.make_conftest_for_args(pytester) |
| 909 | pytester.makeini( |
| 910 | """ |
| 911 | [pytest] |
| 912 | args=123 "123 hello" "this" |
| 913 | """ |
| 914 | ) |
| 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) |
nothing calls this directly
no test coverage detected