diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b1ac4a0323190cdd68681a0ff3f1d7bde2631ae8..810b7428b7c080ff9d4604c8de76769d92029326 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,50 +19,54 @@ lint:
 test_35:
   << : *py_test
   before_script:
-    - conda create -q -n test python=3.5 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -n test python=3.5 pip -y
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
 
 test_36:
   << : *py_test
   before_script:
-    - conda create -q -n test python=3.6 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -n test python=3.6 pip -y
+    - /tmp/test/python -m pip install .[test]
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
 
 test_37:
   << : *py_test
   before_script:
     - conda create -q -n test python=3.7 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -p /tmp/test python=3.10 pip -y
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
 
 test_38:
   << : *py_test
   before_script:
     - conda create -q -n test python=3.8 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -p /tmp/test python=3.10 pip -y
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
 
 test_39:
   << : *py_test
   before_script:
-    - conda create -q -n test python=3.9 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -n test python=3.10 pip -y
+    - /tmp/test/python -m pip install .[test]
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
 
 test_latest:
   << : *py_test
   before_script:
-    - conda create -q -n test python=3.10 pip
-    - conda run -n python -m pip install .[test]
+    - conda create -q -n test python=3.10 pip -y
+    - conda run -n test python -m pip install .[test]
   script:
-    - pytest -vv
+    - conda run -n test pytest -vv
   artifacts:
       when: always
       reports: