(tox_ini_conf: ToxIniCreator)
| 56 | |
| 57 | |
| 58 | def test_config_overrides(tox_ini_conf: ToxIniCreator) -> None: |
| 59 | conf = tox_ini_conf("[testenv]", override=[Override("testenv.c=ok")]).get_env("py") |
| 60 | conf.add_config("c", of_type=str, default="d", desc="desc") |
| 61 | assert conf["c"] == "ok" |
| 62 | |
| 63 | |
| 64 | def test_config_override_wins_memory_loader(tox_ini_conf: ToxIniCreator) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…