Skip to content
Snippets Groups Projects
Commit dc3d85f9 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

CI: Add test-report to artifacts

parent e0434c44
No related branches found
No related tags found
No related merge requests found
Pipeline #17721 failed
# Minimal tests in windows environment # Minimal tests in windows environment
minimal-windows: windows:
stage: test stage: test
except: except:
variables: variables:
...@@ -14,8 +14,11 @@ minimal-windows: ...@@ -14,8 +14,11 @@ minimal-windows:
- python -c "import numpy" - python -c "import numpy"
- python -m pip install -e . - python -m pip install -e .
- python setup.py test - python setup.py test
artifacts:
paths:
- test-report
minimal-ubuntu: ubuntu:
stage: test stage: test
except: except:
variables: variables:
...@@ -26,8 +29,12 @@ minimal-ubuntu: ...@@ -26,8 +29,12 @@ minimal-ubuntu:
- python3 setup.py test - python3 setup.py test
tags: tags:
- docker - docker
- cuda
artifacts:
paths:
- test-report
minimal-conda: conda:
stage: test stage: test
except: except:
variables: variables:
...@@ -39,6 +46,9 @@ minimal-conda: ...@@ -39,6 +46,9 @@ minimal-conda:
- python setup.py test - python setup.py test
tags: tags:
- docker - docker
artifacts:
paths:
- test-report
# -------------------- Linter & Documentation -------------------------------------------------------------------------- # -------------------- Linter & Documentation --------------------------------------------------------------------------
......
...@@ -81,7 +81,7 @@ extras = True ...@@ -81,7 +81,7 @@ extras = True
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml # e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins. # in order to write a coverage file that can be read by Jenkins.
addopts = addopts =
--cov pystencils_autodiff --cov-report term-missing --html test-report/index.html --cov pystencils_autodiff --cov-report html --html test-report/index.html
--verbose --verbose
norecursedirs = norecursedirs =
dist dist
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment