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
Originally reported byMarius Gedminas (Bitbucket: mgedmin, GitHub: mgedmin)
I've an app that uses one of the two standard source layouts: all source code lives inside the src subdirectory. The coverage.xml produced by coverage.py incorrectly thinks the package name is src.mypackage rather than just mypackage.
Steps to reproduce
git clone https://github.com/mgedmin/restview
cd restview
tox -e coverage
coverage xml
grep package.*name coverage.xml
Originally reported by Marius Gedminas (Bitbucket: mgedmin, GitHub: mgedmin)
I've an app that uses one of the two standard source layouts: all source code lives inside the
src
subdirectory. The coverage.xml produced by coverage.py incorrectly thinks the package name issrc.mypackage
rather than justmypackage
.Steps to reproduce
Expected result
<package branch-rate="0" complexity="0" line-rate="1" name="restview">
Actual result
<package branch-rate="0" complexity="0" line-rate="1" name="src.restview">
The text was updated successfully, but these errors were encountered: