(venv_path: Path)
| 13 | |
| 14 | # --- AUTO-SETUP ENVIRONMENT --- |
| 15 | def _venv_python_path(venv_path: Path) -> Path: |
| 16 | return venv_path / ("Scripts/python.exe" if os.name == "nt" else "bin/python") |
| 17 | |
| 18 | def _venv_is_healthy(venv_path: Path) -> bool: |
| 19 | py = _venv_python_path(venv_path) |
no outgoing calls
no test coverage detected