-
Notifications
You must be signed in to change notification settings - Fork 31
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
Measure test coverage #344
Conversation
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## master #344 +/- ##
=========================================
Coverage ? 33.63%
=========================================
Files ? 50
Lines ? 7053
Branches ? 1781
=========================================
Hits ? 2372
Misses ? 4502
Partials ? 179 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
[coverage:paths] | ||
source = | ||
src | ||
.tox/**/site-packages |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need both src
and .tox
paths here? i.e. which is one is really in use or really both while running tox testing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The point of this config setting is to get coverage
to treat paths installed under .tox
as though they were actually the equivalent paths under src
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, not yet sure how/why that would do it but I will just trust you on this ;)
🚀 PR was released in |
Part of #325.