(tox_ini_conf: ToxIniCreator)
| 62 | |
| 63 | |
| 64 | def test_config_override_wins_memory_loader(tox_ini_conf: ToxIniCreator) -> None: |
| 65 | main_conf = tox_ini_conf("[testenv]", override=[Override("testenv.c=ok")]) |
| 66 | conf = main_conf.get_env("py", loaders=[MemoryLoader(c="something_else")]) |
| 67 | conf.add_config("c", of_type=str, default="d", desc="desc") |
| 68 | assert conf["c"] == "ok" |
| 69 | |
| 70 | |
| 71 | def test_config_override_appends_to_list(tox_ini_conf: ToxIniCreator) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…