diff options
| -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  |