(self, pytester: Pytester)
| 674 | ) |
| 675 | |
| 676 | def test_addini_args_ini_files(self, pytester: Pytester) -> None: |
| 677 | self.make_conftest_for_args(pytester) |
| 678 | pytester.makeini( |
| 679 | """ |
| 680 | [pytest] |
| 681 | args=123 "123 hello" "this" |
| 682 | """ |
| 683 | ) |
| 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) |
nothing calls this directly
no test coverage detected