diff options
author | 2018-11-11 12:21:29 +0100 | |
---|---|---|
committer | 2018-11-11 12:21:29 +0100 | |
commit | e30579e1d0534904c07287caa7893066ec312c7c (patch) | |
tree | ffbb800ae5dde1178bf5d3a6de3d648c1758101a /.gitlab-ci.yml | |
parent | Add `echo` on non-zero `coverage publish` exit status. (diff) |
Use extra `coverage report` invocation.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc715b17..730f26bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,7 +93,8 @@ pages: before_script: - pip install coverage script: - - coverage html --directory=public || echo "Got non-zero exit code trying to publish coverage results. Perhaps the minimum required coverage amount was not met?" + - coverage report + - coverage html --directory=public artifacts: paths: - public |