diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b60d4c71a057a4849984d8da279bf792301010f3..9c27c5513a58571e314d310969f896ea5159c8bc 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."