|
|
@ -18,6 +18,7 @@ class PythonRunner: |
|
|
|
PackageManager.getInstance().ensure("virtualenv") |
|
|
|
self.__init_venv() |
|
|
|
|
|
|
|
# TODO: Detect if the prev venv is the same OS type |
|
|
|
def __init_venv(self): |
|
|
|
if os.name == "nt": # Windows |
|
|
|
self.vpython = os.path.join(self.virtual_dir, "Scripts", "python.exe") |
|
|
@ -75,7 +76,7 @@ class PythonRunner: |
|
|
|
run_env[k] = grab_from(v) |
|
|
|
if "env" in job_spec: |
|
|
|
for env_var in job_spec["env"]: |
|
|
|
if isinstance(job_spec["env"], str): |
|
|
|
if isinstance(env_var["value"], str): |
|
|
|
run_env[env_var["name"]] = env_var["value"] |
|
|
|
else: |
|
|
|
run_env[env_var["name"]] = grab_from(env_var["value"]) |
|
|
|