diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4073ebc..4350d8f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,12 +4,13 @@ run tests: script: - pip install pytest pytest-cov pytest-mock pytest-flask - pip install Flask-HTTPAuth - - coverage run -m pytest + - coverage run -m pytest --junitxml=report.xml - coverage report - coverage xml coverage: '/^TOTAL.+?(\d+\%)$/' artifacts: reports: cobertura: coverage.xml + junit: report.xml tags: - docker