From ef424fc1f3745cac6ca7af34191c486afbe0867c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andri=20Fr=C3=A4nkl?= <andri.fraenkl@unibas.ch>
Date: Mon, 12 Dec 2022 09:54:37 +0000
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b60d4c7..9c27c55 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ build-job:       # First stage deployment and installation of dependencies.
 Coverage-test-job:   # Test Stage
   stage: test        # Starts when the above build stages finishes installing dependencies.
   script:
-    - coverage run --source tests/tests/ -m pytest
+    - coverage run --source tests -m pytest
     - coverage report -m
     - echo "Coverage successfully deployed."
 
@@ -25,6 +25,6 @@ Flake8/Pylint/mypy-test-job:   # Test Stage
   stage: test    # Deploys and runs all 3 linters.
   script:
     - flake8 --docstring-convention google tests/tests/
-    - pylint tests/tests/
-    - mypy tests/tests/
+    - pylint tests/ tests/
+    - mypy tests/ tests/
     - echo "Linters successfully deployed."
-- 
GitLab