1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-24 09:06:15 +01:00

Avoid requiring admin rights on Windows

This fixes an error on Windows (I'm on with Python 3.7) where the symlink cannot be created without admin rights.

https://github.com/fedora-python/tox-current-env/pull/24
This commit is contained in:
Fredrik Averpil 2020-08-10 11:58:17 +02:00 committed by GitHub
parent dc47ce3ddf
commit bfbc61a4b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import os
import shutil
import subprocess
import sys
import tox
@ -134,6 +135,10 @@ def tox_testenv_create(venv, action):
target = sys.executable
rm_venv(venv)
os.makedirs(os.path.dirname(link))
if sys.platform == "win32":
# Avoid requiring admin rights on Windows
subprocess.check_call(f'mklink /J "{link}" "{target}"', shell=True)
else:
os.symlink(target, link)
# prevent tox from creating the venv
return True