We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49bfc98 commit a621a05Copy full SHA for a621a05
.github/workflows/test.yml
@@ -63,6 +63,8 @@ jobs:
63
run: inv cover qa
64
- name: Codecov
65
uses: codecov/codecov-action@v1
66
+ with:
67
+ file: ./coverage.xml
68
bench:
69
needs: unit-tests
70
runs-on: ubuntu-latest
tasks.py
@@ -145,7 +145,7 @@ def cover(ctx, html=False):
145
extra = "--cov-report html" if html else ""
146
with ctx.cd(ROOT):
147
ctx.run(
148
- "pytest --benchmark-skip --cov flask_restx --cov-report term {0}".format(
+ "pytest --benchmark-skip --cov flask_restx --cov-report term --cov-report xml {0}".format(
149
extra
150
),
151
pty=True,
0 commit comments