Merge branch 'fix-coverage-data' into 'master'

Fix the coverage data generation

See merge request openlp/openlp!244
This commit is contained in:
Tim Bentley 2020-09-28 21:04:46 +00:00
commit a61541a6ad
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
*.ropeproject *.ropeproject
*.~\?~ *.~\?~
*eric[1-9]project *eric[1-9]project
*.coverage
.cache .cache
.coverage .coverage
.directory .directory

View File

@ -83,8 +83,9 @@ pages:
stage: deploy stage: deploy
image: openlp/debian image: openlp/debian
script: script:
- fixpaths linux.coverage
- fixpaths macos.coverage
- python3-coverage combine linux.coverage macos.coverage - python3-coverage combine linux.coverage macos.coverage
- fixpaths .coverage
- python3-coverage html - python3-coverage html
- mv htmlcov public - mv htmlcov public
- python3-coverage report - python3-coverage report