From cef5068fe9427645e2e3edef7efe8cb83897f6d4 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 14 Apr 2018 16:12:32 +0200 Subject: [PATCH] Silence the `apt` process of the CI --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 471ecc5..b711677 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: debian test: script: - - apt-get update -qy - - apt-get install -qqy --no-install-recommends python3-mutagen python3-gi-cairo gir1.2-poppler-0.18 gir1.2-gdkpixbuf-2.0 libimage-exiftool-perl python3-coverage + - apt-get -qqy update + - apt-get -qqy install --no-install-recommends python3-mutagen python3-gi-cairo gir1.2-poppler-0.18 gir1.2-gdkpixbuf-2.0 libimage-exiftool-perl python3-coverage - python3-coverage run -m unittest discover -s tests/ - python3-coverage report -m --include 'src/*'