Browse Source

bugfix

pull/32/head
Daniel Gyulai 3 years ago
parent
commit
afb5ff4d97
  1. 3
      alice-ci/src/alice/runners/pythonrunner.py
  2. 2
      alice-ci/src/alice/runners/pyutils.py

3
alice-ci/src/alice/runners/pythonrunner.py

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

2
alice-ci/src/alice/runners/pyutils.py

@ -130,7 +130,7 @@ def grab_from(target):
value = None value = None
return value return value
else: else:
raise ConfigException(f"Unsupported grabber: {target.keys()}") raise ConfigException(f"Unsupported grabber: {target}")
def gen_dict(list_of_dicts): def gen_dict(list_of_dicts):

Loading…
Cancel
Save