From 039dc2ca3e677c2524950d7a82f0056979e8e512 Mon Sep 17 00:00:00 2001 From: k204230 <bergemann@dkrz.de> Date: Fri, 10 Jun 2022 20:19:31 +0200 Subject: [PATCH] Update pipline --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2a45060..b1ac4a0 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 -- GitLab