summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-04-14 16:12:32 +0200
committerjvoisin2018-04-14 16:12:32 +0200
commitcef5068fe9427645e2e3edef7efe8cb83897f6d4 (patch)
tree0c77dd4dd9862086f41af4600d1ad74536a6f993
parentbbde340e8a17c4fc45b12a9ef990fdd11f6c5c17 (diff)
Silence the `apt` process of the CI
-rw-r--r--.gitlab-ci.yml4
1 files 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
2 2
3test: 3test:
4 script: 4 script:
5 - apt-get update -qy 5 - apt-get -qqy update
6 - 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 6 - 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
7 - python3-coverage run -m unittest discover -s tests/ 7 - python3-coverage run -m unittest discover -s tests/
8 - python3-coverage report -m --include 'src/*' 8 - python3-coverage report -m --include 'src/*'