(self, pytester: Pytester)
| 587 | config.getvalueorskip("hello") |
| 588 | |
| 589 | def test_getoption(self, pytester: Pytester) -> None: |
| 590 | config = pytester.parseconfig() |
| 591 | with pytest.raises(ValueError): |
| 592 | config.getvalue("x") |
| 593 | assert config.getoption("x", 1) == 1 |
| 594 | |
| 595 | def test_getconftest_pathlist(self, pytester: Pytester, tmp_path: Path) -> None: |
| 596 | somepath = tmp_path.joinpath("x", "y", "z") |
nothing calls this directly
no test coverage detected