We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Testing switching use of v1 of the action and the bash uploader to v2 of the action means C code which was previously reported is now omitted.
For example, using the action like this (varying the flags/name per OS):
- name: Upload coverage uses: codecov/codecov-action@v2 with: file: ./coverage.xml flags: ${{ matrix.codecov-flag }} name: ${{ matrix.os }} Python ${{ matrix.python-version }}
Here's a branch using v1 and the bash uploader, report includes both Python and C code (C code in src and src/libImaging dirs):
src
src/libImaging
Here's a branch switching to v2 for both, but report includes only Python code:
There's a bit of variation between OS, but we're generally building like this:
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 setup.py build_ext install
And testing with pytest and pytest-cov and generating coverage.xml with either the --cov-report xml switch or coverage xml command.
pytest
pytest-cov
coverage.xml
--cov-report xml
coverage xml
Am I missing something?
The text was updated successfully, but these errors were encountered:
@hugovk if this is still an issue, please open a topic on our community boards
Sorry, something went wrong.
No branches or pull requests
Testing switching use of v1 of the action and the bash uploader to v2 of the action means C code which was previously reported is now omitted.
For example, using the action like this (varying the flags/name per OS):
Here's a branch using v1 and the bash uploader, report includes both Python and C code (C code in
src
andsrc/libImaging
dirs):Here's a branch switching to v2 for both, but report includes only Python code:
There's a bit of variation between OS, but we're generally building like this:
CFLAGS="-coverage -Werror=implicit-function-declaration" python3 setup.py build_ext install
And testing with
pytest
andpytest-cov
and generatingcoverage.xml
with either the--cov-report xml
switch orcoverage xml
command.Am I missing something?
The text was updated successfully, but these errors were encountered: