diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ba65d99f98a6038deb37765c2cd5bce8c96ab721..5033ba926207435b19a5943a252e7be185348dad 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,11 +17,13 @@ python_3:
         - kat -v
         - which python3
         - python3 --version
-        - python3 test/run_tests.py
+        - cd test
+        - python3 run_tests.py
         
 python_2:
     script:
         - kat -v
         - which python2.7
         - python2.7 --version
-        - python2.7 test/run_tests.py
\ No newline at end of file
+        - cd test
+        - python2.7 run_tests.py
\ No newline at end of file