diff options
author | 2018-11-11 12:19:46 +0100 | |
---|---|---|
committer | 2018-11-11 12:19:46 +0100 | |
commit | c94fa7c4b9b362661967a31ee0f0d85b215f0e73 (patch) | |
tree | 34ffdd2c94096e0cd20ba26a8947f32209abec8f | |
parent | Fix up YAML formatting. (diff) |
Add `echo` on non-zero `coverage publish` exit status.
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a2d460ae..cc715b17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,7 +93,7 @@ pages: before_script: - pip install coverage script: - - coverage html --directory=public + - coverage html --directory=public || echo "Got non-zero exit code trying to publish coverage results. Perhaps the minimum required coverage amount was not met?" artifacts: paths: - public |