(conf_str: str)
| 26 | @pytest.fixture(name="conf_builder") |
| 27 | def _conf_builder(tox_ini_conf: ToxIniCreator) -> ConfBuilder: |
| 28 | def _make(conf_str: str) -> ConfigSet: |
| 29 | return tox_ini_conf(f"[tox]\nenvlist=py39\n[testenv]\n{conf_str}").get_env("py39") |
| 30 | |
| 31 | return _make |
| 32 |
nothing calls this directly
no test coverage detected
searching dependent graphs…