diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2a4506095dc4356f6c563b725b2a39a8048b921b..b1ac4a0323190cdd68681a0ff3f1d7bde2631ae8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ lint: test_35: << : *py_test before_script: - - conda env create -q -n test python=3.5 pip + - conda create -q -n test python=3.5 pip - conda run -n python -m pip install .[test] script: - pytest -vv @@ -27,7 +27,7 @@ test_35: test_36: << : *py_test before_script: - - conda env create -q -n test python=3.6 pip + - conda create -q -n test python=3.6 pip - conda run -n python -m pip install .[test] script: - pytest -vv @@ -35,7 +35,7 @@ test_36: test_37: << : *py_test before_script: - - conda env create -q -n test python=3.7 pip + - conda create -q -n test python=3.7 pip - conda run -n python -m pip install .[test] script: - pytest -vv @@ -43,7 +43,7 @@ test_37: test_38: << : *py_test before_script: - - conda env create -q -n test python=3.8 pip + - conda create -q -n test python=3.8 pip - conda run -n python -m pip install .[test] script: - pytest -vv @@ -51,7 +51,7 @@ test_38: test_39: << : *py_test before_script: - - conda env create -q -n test python=3.9 pip + - conda create -q -n test python=3.9 pip - conda run -n python -m pip install .[test] script: - pytest -vv @@ -59,7 +59,7 @@ test_39: test_latest: << : *py_test before_script: - - conda env create -q -n test python=3.10 pip + - conda create -q -n test python=3.10 pip - conda run -n python -m pip install .[test] script: - pytest -vv