diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b4ec40522190883cf9cce4e5adb110248b216a9f..11090af2937c6b153c30091f04048279266f75e4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,15 +1,14 @@
-before_script:
-  - python3 -V
-  - uname -a
-
 unittest:
     image: debian:stretch
     stage: test
     script:
     - apt update
     - apt install -y sqlite3 python3 locales-all  python3-flask python3-ldap3 python3-requests python3-lxml python3-icalendar python3-mysql.connector python3-requests python3-coverage
+    - python3 -V
+    - uname -a
     - ./tests.py
-    - python3 -m coverage run tests.py; python3 -m coverage html
+    - python3 -m coverage run tests.py
+    - python3 -m coverage html
     artifacts:
         paths:
         - htmlcov/*
\ No newline at end of file