On windows there's a different directory for the virtualenv
(venv: str)
| 47 | |
| 48 | |
| 49 | def bin_dir(venv: str) -> str: |
| 50 | """On windows there's a different directory for the virtualenv""" |
| 51 | bin_part = 'Scripts' if sys.platform == 'win32' else 'bin' |
| 52 | return os.path.join(venv, bin_part) |
| 53 | |
| 54 | |
| 55 | def get_env_patch(venv: str) -> PatchesT: |
no outgoing calls
no test coverage detected