From 8adb3402d0440596eb0e980566ab39e92d6dc4c4 Mon Sep 17 00:00:00 2001 From: s3lph Date: Fri, 17 Aug 2018 20:53:19 +0200 Subject: [PATCH] CI: Exclude abstract_httpd_test from coverage. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61f518d..77e0975 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ test: script: - pip3 install -r requirements.txt - sudo -u matemat python3 -m coverage run --branch -m unittest discover matemat - - sudo -u matemat python3 -m coverage report -m --include 'matemat/*' --omit '*/test_*.py' + - sudo -u matemat python3 -m coverage report -m --include 'matemat/*' --omit '*/test_*.py' --omit 'matemat/webserver/test/abstract_httpd_test.py' codestyle: stage: test