Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding codecov configuration #2693

Merged
merged 15 commits into from Jul 11, 2021
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -19,7 +19,14 @@ jobs:
run: |
python -m pip install tox
- name: Run tests
run: tox
run: tox -- --cov-report xml
- name: Upload coverage to Codecov
tanvimoharir marked this conversation as resolved.
Show resolved Hide resolved
uses: codecov/codecov-action@v1
with:
flags: >- # Mark which lines are covered by which envs
${{ runner.os }},
${{ matrix.python }}
functionalities: gcov # disable C coverage autodiscovery

release:
needs: test
Expand Down