coverage combine

This commit is contained in:
Matthias Bisping 2022-04-20 15:22:17 +02:00
parent d4cd966071
commit 943f7799d4
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -33,6 +33,7 @@
**/dependencies-and-licenses-overview.txt
.coverage
.coverage\.*\.*
*__pycache__
@ -46,7 +47,6 @@
*misc
/coverage_html_report/
.coverage\.*
# Created by https://www.toptal.com/developers/gitignore/api/linux,pycharm
# Edit at https://www.toptal.com/developers/gitignore?templates=linux,pycharm

View File

@ -20,4 +20,4 @@ RUN apt update --yes
RUN apt install vim --yes
RUN apt install poppler-utils --yes
CMD coverage run -m pytest test/ -x && coverage report -m && coverage xml
CMD coverage run -m pytest test/ --tb=native -q -s -vvv -x && coverage combine && coverage report -m && coverage xml