Skip to content
Snippets Groups Projects
Commit b58aa8c5 authored by Klaas Kliffen's avatar Klaas Kliffen :satellite:
Browse files

Update with parallel matrix for python versions

parent 52b61297
No related branches found
No related tags found
1 merge request!5Resolve CWG-11 "Features/ add tox"
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
default: default:
image: python:3.7 # minimum supported version image: python:3.10 # use latest for building/linting
before_script: before_script:
- python --version # For debugging - python --version # For debugging
- python -m pip install --upgrade pip - python -m pip install --upgrade pip
...@@ -47,8 +47,12 @@ run_pylint: ...@@ -47,8 +47,12 @@ run_pylint:
run_unit_tests: run_unit_tests:
stage: test stage: test
image: python:3.${PY_VERSION}
script: script:
- tox -e py37,py38,py39,py310 - tox -e py3${PY_VERSION}
parallel:
matrix: # use the matrix for testing
- PY_VERSION: [7, 8, 9, 10]
package_files: package_files:
stage: package stage: package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment