(self, pytester: Pytester)
| 665 | pytest.raises(ValueError, config.getini, "other") |
| 666 | |
| 667 | def make_conftest_for_args(self, pytester: Pytester) -> None: |
| 668 | pytester.makeconftest( |
| 669 | """ |
| 670 | def pytest_addoption(parser): |
| 671 | parser.addini("args", "new args", type="args") |
| 672 | parser.addini("a2", "", "args", default="1 2 3".split()) |
| 673 | """ |
| 674 | ) |
| 675 | |
| 676 | def test_addini_args_ini_files(self, pytester: Pytester) -> None: |
| 677 | self.make_conftest_for_args(pytester) |
no test coverage detected