Skip to content
Snippets Groups Projects
Commit 6e3ce3d7 authored by Martin Bergemann's avatar Martin Bergemann :speech_balloon:
Browse files

Update pipeline

parent 039dc2ca
No related branches found
No related tags found
1 merge request!4Tests
Pipeline #19050 failed
...@@ -19,50 +19,54 @@ lint: ...@@ -19,50 +19,54 @@ lint:
test_35: test_35:
<< : *py_test << : *py_test
before_script: before_script:
- conda create -q -n test python=3.5 pip - conda create -q -n test python=3.5 pip -y
- conda run -n python -m pip install .[test] - conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
test_36: test_36:
<< : *py_test << : *py_test
before_script: before_script:
- conda create -q -n test python=3.6 pip - conda create -q -n test python=3.6 pip -y
- conda run -n python -m pip install .[test] - /tmp/test/python -m pip install .[test]
- conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
test_37: test_37:
<< : *py_test << : *py_test
before_script: before_script:
- conda 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] - conda create -q -p /tmp/test python=3.10 pip -y
- conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
test_38: test_38:
<< : *py_test << : *py_test
before_script: before_script:
- conda 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] - conda create -q -p /tmp/test python=3.10 pip -y
- conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
test_39: test_39:
<< : *py_test << : *py_test
before_script: before_script:
- conda create -q -n test python=3.9 pip - conda create -q -n test python=3.10 pip -y
- conda run -n python -m pip install .[test] - /tmp/test/python -m pip install .[test]
- conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
test_latest: test_latest:
<< : *py_test << : *py_test
before_script: before_script:
- conda create -q -n test python=3.10 pip - conda create -q -n test python=3.10 pip -y
- conda run -n python -m pip install .[test] - conda run -n test python -m pip install .[test]
script: script:
- pytest -vv - conda run -n test pytest -vv
artifacts: artifacts:
when: always when: always
reports: reports:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment