|
@ -42,13 +42,15 @@ class PythonRunner(): |
|
|
if "dependencies" in config: |
|
|
if "dependencies" in config: |
|
|
for dependency in config["dependencies"]: |
|
|
for dependency in config["dependencies"]: |
|
|
# TODO: Check what happens with fixed version |
|
|
# TODO: Check what happens with fixed version |
|
|
with subprocess.Popen([self.vpython, "-m", "pip", "install", dependency, "--upgrade"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: |
|
|
command = [self.vpython, "-m", "pip", "install", dependency, "--upgrade"] |
|
|
|
|
|
with subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p: |
|
|
p.wait() |
|
|
p.wait() |
|
|
if p.returncode != 0: |
|
|
if p.returncode != 0: |
|
|
sys.stdout.buffer.write(p.stderr.read()) |
|
|
sys.stdout.buffer.write(p.stderr.read()) |
|
|
raise(RunnerError(f"PythonRunner: Could not install dependency: {dependency} ({p.returncode})")) |
|
|
raise(RunnerError(f"PythonRunner: Could not install dependency: {dependency} ({p.returncode})")) |
|
|
for env_var in config["env"]: |
|
|
if "env" in config: |
|
|
self.env_vars[env_var["name"]] = env_var["value"] |
|
|
for env_var in config["env"]: |
|
|
|
|
|
self.env_vars[env_var["name"]] = env_var["value"] |
|
|
if "workdir" in config and config["workdir"] is not None: |
|
|
if "workdir" in config and config["workdir"] is not None: |
|
|
self.workdir = os.path.join(self.workdir, config["workdir"]) |
|
|
self.workdir = os.path.join(self.workdir, config["workdir"]) |
|
|
|
|
|
|
|
@ -60,7 +62,6 @@ class PythonRunner(): |
|
|
base_name = os.path.basename(item) |
|
|
base_name = os.path.basename(item) |
|
|
if os.path.isdir(dir): |
|
|
if os.path.isdir(dir): |
|
|
item_parts = base_name.split("*") |
|
|
item_parts = base_name.split("*") |
|
|
print(item_parts) |
|
|
|
|
|
for file in os.listdir(dir): |
|
|
for file in os.listdir(dir): |
|
|
# TODO: Fix ordering! A*B = B*A = AB* |
|
|
# TODO: Fix ordering! A*B = B*A = AB* |
|
|
if item_parts[0] in file and item_parts[1] in file: |
|
|
if item_parts[0] in file and item_parts[1] in file: |
|
|