Function
test_cli_ini_with_interpolated
(tmp_path: Path, monkeypatch: MonkeyPatch)
Source from the content-addressed store, hash-verified
| 140 | |
| 141 | |
| 142 | def test_cli_ini_with_interpolated(tmp_path: Path, monkeypatch: MonkeyPatch) -> None: |
| 143 | to = tmp_path / "tox.ini" |
| 144 | to.write_text("[tox]\na = %(b)s") |
| 145 | monkeypatch.setenv("TOX_USER_CONFIG_FILE", str(to)) |
| 146 | conf = IniConfig() |
| 147 | assert conf.get("a", str) |
| 148 | |
| 149 | |
| 150 | @pytest.mark.parametrize( |
Callers
nothing calls this directly
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…