(python_dir)
| 171 | |
| 172 | |
| 173 | def test_healthy_venv_creator(python_dir): |
| 174 | # venv creator produces slightly different pyvenv.cfg |
| 175 | prefix, tmpdir = python_dir |
| 176 | |
| 177 | with envcontext((('VIRTUALENV_CREATOR', 'venv'),)): |
| 178 | python.install_environment(prefix, C.DEFAULT, ()) |
| 179 | |
| 180 | assert python.health_check(prefix, C.DEFAULT) is None |
| 181 | |
| 182 | |
| 183 | def test_unhealthy_python_goes_missing(python_dir): |
nothing calls this directly
no test coverage detected