Skip to content
Snippets Groups Projects
Commit 426f1668 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Test with multiple Python versions

parent e004df6d
No related branches found
No related tags found
No related merge requests found
Pipeline #72135 passed
image: python:3.6
stages: stages:
- test - test
...@@ -10,7 +8,7 @@ before_script: ...@@ -10,7 +8,7 @@ before_script:
- pip3 install . - pip3 install .
- pip3 show b_asic - pip3 show b_asic
run tests: .run-test:
stage: test stage: test
script: script:
- pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test - pytest --cov=b_asic --cov-report xml:cov.xml --cov-report term test
...@@ -19,3 +17,23 @@ run tests: ...@@ -19,3 +17,23 @@ run tests:
coverage_report: coverage_report:
coverage_format: cobertura coverage_format: cobertura
path: cov.xml path: cov.xml
run-test-3.6:
image: python:3.6
extends: ".run-test"
run-test-3.7:
image: python:3.7
extends: ".run-test"
run-test-3.8:
image: python:3.8
extends: ".run-test"
run-test-3.9:
image: python:3.9
extends: ".run-test"
run-test-3.10:
image: python:3.10
extends: ".run-test"
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