Browse Source

pep8

pull/32/head
Daniel Gyulai 3 years ago
parent
commit
b545e84fe5
  1. 1
      alice-ci/src/alice/config.py
  2. 5
      alice-ci/src/alice/runners/pypirepo.py
  3. 1
      alice-ci/src/alice/runners/pythonrunner.py

1
alice-ci/src/alice/config.py

@ -42,7 +42,6 @@ class ConfigHolder:
self.vars[key] = value self.vars[key] = value
self.commit() self.commit()
def soft_set(self, key, value): def soft_set(self, key, value):
self.vars[key] = value self.vars[key] = value

5
alice-ci/src/alice/runners/pypirepo.py

@ -1,13 +1,10 @@
import logging import logging
from operator import truediv
from xml.dom import NoModificationAllowedErr
import docker import docker
import time
from os.path import join, isdir from os.path import join, isdir
from os import getcwd, mkdir from os import getcwd, mkdir
import os import os
from ..exceptions import NonZeroRetcode, RunnerError, ConfigException from ..exceptions import RunnerError
from ..config import ConfigHolder from ..config import ConfigHolder
pipconf = """[global] pipconf = """[global]

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

@ -56,7 +56,6 @@ class PythonRunner:
output.append(line.decode('utf8').strip()) output.append(line.decode('utf8').strip())
p.wait() p.wait()
if p.returncode != 0: if p.returncode != 0:
#sys.stdout.buffer.write(p.stderr.read())
print("\n".join(output)) print("\n".join(output))
raise(RunnerError(f"[PythonRunner] Could not install dependencies: {dependencies} ({p.returncode})")) raise(RunnerError(f"[PythonRunner] Could not install dependencies: {dependencies} ({p.returncode})"))
logging.info("[PythonRunner] Installation done") logging.info("[PythonRunner] Installation done")

Loading…
Cancel
Save