From 1885d7a74fe4e04af424531751ef484d437a1293 Mon Sep 17 00:00:00 2001
From: Julian Rother <julian@jrother.eu>
Date: Thu, 29 Jul 2021 02:43:20 +0200
Subject: [PATCH] Fixed coverage output

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9504898..b91ce53 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,7 +19,7 @@ test:
   image: python:3.7
   script:
   - pip install pytest coverage
-  - coverage run --include '*.py' -m pytest --junitxml=report.xml
+  - coverage run --include 'ldapserver/*.py' -m pytest --junitxml=report.xml
   - coverage report -m
   - coverage html
   - coverage xml
-- 
GitLab