You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using your GitHub action but have noticed that it only supports one source for coverage.
We would like to be able to support a few packages as sources for coverage so our pyproject.toml is set up as such
The function parseSource can only return one source.
const regex = new RegExp(`.*<source>(?<source>.*)</source>.*`)
This ends up returning only the first matched source: package1
and so the GitHub comment only displays coverage of files belonging to the first package.
Would it be possible to support multiple sources?
I'm happy to be a contributor if that's what it takes.
The text was updated successfully, but these errors were encountered:
Hi,
We are using your GitHub action but have noticed that it only supports one source for coverage.
We would like to be able to support a few packages as sources for coverage so our pyproject.toml is set up as such
Which leads to a
coverage.xml
file like this:The function
parseSource
can only return one source.This ends up returning only the first matched source:
package1
and so the GitHub comment only displays coverage of files belonging to the first package.
Would it be possible to support multiple sources?
I'm happy to be a contributor if that's what it takes.
The text was updated successfully, but these errors were encountered: