From c0fe644b32e6a2f17b14098b8e549d0297a841eb Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauld.mccarthy@gmail.com> Date: Sat, 20 May 2017 14:58:45 +0100 Subject: [PATCH] Coverage needs to be explicitly installed if I want to print its output after testing --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16854c30d..3d4d50520 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ test:2.7: script: - cat requirements.txt | xargs -n 1 pip install - pip install scipy + - pip install coverage - su -s /bin/bash -c "xvfb-run python setup.py test" nobody - coverage report -m @@ -11,5 +12,6 @@ test:3.6: script: - cat requirements.txt | xargs -n 1 pip install - pip install scipy + - pip install coverage - su -s /bin/bash -c "xvfb-run python setup.py test" nobody - coverage report -m -- GitLab