Update gitlab CI config

This commit is contained in:
Marko Durkovic 2022-05-20 11:35:48 +02:00
parent a1fa5c7cfb
commit abc1acfecb

View File

@ -11,14 +11,15 @@ test:
- venv/bin/python -m pip install -r requirements-dev.txt - venv/bin/python -m pip install -r requirements-dev.txt
- venv/bin/python -m pip install -e .[dev] - venv/bin/python -m pip install -e .[dev]
- venv/bin/python -m pytest - venv/bin/python -m pytest
- venv/bin/python -m coverage xml
- venv/bin/sphinx-build docs public - venv/bin/sphinx-build docs public
coverage: '/\d+\%\s*$/' coverage: '/\d+\%\s*$/'
artifacts: artifacts:
paths: paths:
- public - public
reports: reports:
cobertura: coverage.xml coverage_report:
coverage_format: cobertura
path: coverage.xml
junit: report.xml junit: report.xml