(self, pytester: Pytester)
| 129 | assert config.getini("minversion") == "1.0" |
| 130 | |
| 131 | def test_pyproject_toml(self, pytester: Pytester) -> None: |
| 132 | pytester.makepyprojecttoml( |
| 133 | """ |
| 134 | [tool.pytest.ini_options] |
| 135 | minversion = "1.0" |
| 136 | """ |
| 137 | ) |
| 138 | config = pytester.parseconfig() |
| 139 | assert config.getini("minversion") == "1.0" |
| 140 | |
| 141 | def test_toxini_before_lower_pytestini(self, pytester: Pytester) -> None: |
| 142 | sub = pytester.mkdir("sub") |
nothing calls this directly
no test coverage detected