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 b1144d2 commit afd8cddCopy full SHA for afd8cdd
.github/workflows/ci.yml
@@ -81,9 +81,10 @@ jobs:
81
python -m pytest tests/ --cov=pymongosql --cov-report=term-missing --cov-report=xml
82
83
- name: Upload coverage reports
84
- if: github.event_name == 'push' && ${{ secrets.CODECOV_TOKEN }}
85
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
86
with:
+ env_vars: OS,PYTHON
87
token: ${{ secrets.CODECOV_TOKEN }}
88
- file: ./coverage.xml
+ files: ./coverage.xml
89
+ flags: unittests
90
fail_ci_if_error: false
0 commit comments