python-best-practices-cookiecutter icon indicating copy to clipboard operation
python-best-practices-cookiecutter copied to clipboard

Feature Request

Open Zymergen-jvandezande opened this issue 4 years ago • 0 comments

Add optional uploading of the code coverage report to codecov.io

Sample change to .github/workflows/test.yml

<       - run: pipenv run pytest --cov --cov-fail-under=100
---
>       - run: pipenv run pytest --cov --cov-fail-under=100 --cov-report=xml
>
>       - name: Upload Coverage to Codecov
>         uses: codecov/codecov-action@v1

Zymergen-jvandezande avatar Mar 15 '21 17:03 Zymergen-jvandezande