Skip to content

Commit

Permalink
Fix incorrect test coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
pozsa committed Jan 26, 2022
1 parent 30de34f commit fd2c948
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-backend.yaml
Expand Up @@ -42,7 +42,11 @@ jobs:
VERSION: test
RELEASEID: test
run: |
python -m pytest --cov=app --cov-report=xml
coverage run --concurrency=thread,greenlet --source=app -m pytest
coverage xml
# https://github.com/nedbat/coveragepy/issues/1082
# pytest-cov doesn't seem to support the `concurrency` flag so
# using coverage commands

- name: Codecov
# You may pin to the exact commit or the version.
Expand Down

0 comments on commit fd2c948

Please sign in to comment.