From 017dd9a582a0484f3c1ced98b464703142d52e43 Mon Sep 17 00:00:00 2001 From: sonny Date: Thu, 18 Jun 2020 20:23:47 +0200 Subject: [PATCH] Make poetry/pip less verbose --- gitlab-ci/lint.yml | 4 ++-- gitlab-ci/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gitlab-ci/lint.yml b/gitlab-ci/lint.yml index 3f1e259..134716f 100644 --- a/gitlab-ci/lint.yml +++ b/gitlab-ci/lint.yml @@ -3,10 +3,10 @@ python-linting: allow_failure: true image: python:3.7.4-slim-stretch before_script: - - pip install poetry + - pip install poetry --quiet - poetry config cache-dir ~/.cache/poetry - poetry config virtualenvs.in-project true - - poetry install --no-interaction + - poetry install --no-interaction --quiet script: - poetry run isort src/ --check-only --recursive - poetry run black src/ --line-length 88 --check diff --git a/gitlab-ci/test.yml b/gitlab-ci/test.yml index 3e8eccb..723a0e8 100644 --- a/gitlab-ci/test.yml +++ b/gitlab-ci/test.yml @@ -6,10 +6,10 @@ python-tests: - memcached:1.5.22 image: python:3.7.4-slim-stretch before_script: - - pip install poetry + - pip install poetry --quiet - poetry config cache-dir .cache/poetry - poetry config virtualenvs.in-project true - - poetry install --no-interaction + - poetry install --no-interaction --quiet script: - poetry run coverage run src/manage.py test newsreader - poetry run coverage report