diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e0fea78fe5b8924ca57e855696a651664c824bae..cc8cfe8fcc53cda6a601b7042b6e7e47e1479936 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,7 +29,7 @@ build:
   tags:
     - docker
   script:
-    - python setup.py install
+    - python3 setup.py install
 
 # Tests 
 test:
@@ -37,7 +37,7 @@ test:
   tags:
     - docker
   script:
-    - python setup.py test
+    - python3 setup.py test
   artifacts:
     when: always
     untracked: true
@@ -51,7 +51,7 @@ dist:
   tags:
     - docker
   script:
-    - pip install -e .
+    - pip3 install -e .
     - nosetests
   artifacts:
     when: always