From b545e84fe52790bd870fb4597ca209590b96c675 Mon Sep 17 00:00:00 2001 From: gyulaid Date: Sun, 24 Apr 2022 17:44:18 +0200 Subject: [PATCH] pep8 --- alice-ci/src/alice/config.py | 1 - alice-ci/src/alice/runners/pypirepo.py | 41 ++++++++++------------ alice-ci/src/alice/runners/pythonrunner.py | 1 - 3 files changed, 19 insertions(+), 24 deletions(-) diff --git a/alice-ci/src/alice/config.py b/alice-ci/src/alice/config.py index fb1bd6e..a904c59 100644 --- a/alice-ci/src/alice/config.py +++ b/alice-ci/src/alice/config.py @@ -41,7 +41,6 @@ class ConfigHolder: def set(self, key, value): self.vars[key] = value self.commit() - def soft_set(self, key, value): self.vars[key] = value diff --git a/alice-ci/src/alice/runners/pypirepo.py b/alice-ci/src/alice/runners/pypirepo.py index 7c02814..3fd6bee 100644 --- a/alice-ci/src/alice/runners/pypirepo.py +++ b/alice-ci/src/alice/runners/pypirepo.py @@ -1,13 +1,10 @@ import logging -from operator import truediv -from xml.dom import NoModificationAllowedErr import docker -import time from os.path import join, isdir from os import getcwd, mkdir import os -from ..exceptions import NonZeroRetcode, RunnerError, ConfigException +from ..exceptions import RunnerError from ..config import ConfigHolder pipconf = """[global] @@ -74,26 +71,26 @@ class PypiRepoRunner: if job_config.enabled: if not running: c = self.client.containers.run( - name = job_config.container_name, - image="pypiserver/pypiserver:latest", - detach=True, - labels={"app": "alice"}, - command=["--overwrite", "-P", ".htpasswd", "packages"], - ports={"8080/tcp": job_config.port}, - volumes={ - package_dir: { - "bind": "/data/packages", - "mode": "rw" - }, - htpasswd_file:{ - "bind": "/data/.htpasswd", - "mode": "ro" - } + name=job_config.container_name, + image="pypiserver/pypiserver:latest", + detach=True, + labels={"app": "alice"}, + command=["--overwrite", "-P", ".htpasswd", "packages"], + ports={"8080/tcp": job_config.port}, + volumes={ + package_dir: { + "bind": "/data/packages", + "mode": "rw" }, - restart_policy={ - "Name": "unless-stopped" + htpasswd_file: { + "bind": "/data/.htpasswd", + "mode": "ro" } - ) + }, + restart_policy={ + "Name": "unless-stopped" + } + ) c.reload() print(f"[PyPiRepo] {job_config.container_name} : {c.status}") cfgh = ConfigHolder.getInstance() diff --git a/alice-ci/src/alice/runners/pythonrunner.py b/alice-ci/src/alice/runners/pythonrunner.py index cc7e6bf..55a6ab8 100644 --- a/alice-ci/src/alice/runners/pythonrunner.py +++ b/alice-ci/src/alice/runners/pythonrunner.py @@ -56,7 +56,6 @@ class PythonRunner: output.append(line.decode('utf8').strip()) p.wait() if p.returncode != 0: - #sys.stdout.buffer.write(p.stderr.read()) print("\n".join(output)) raise(RunnerError(f"[PythonRunner] Could not install dependencies: {dependencies} ({p.returncode})")) logging.info("[PythonRunner] Installation done")