-
-
Notifications
You must be signed in to change notification settings - Fork 438
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
Create Way to force package even if filepath exists #1026
Create Way to force package even if filepath exists #1026
Conversation
@nedbat it might be cleaner to do something with [coverage:run]
source=.
[coverage:paths]
.
.tox/*/lib/*/site-packages/** should be able to get coverage to cover any file in |
|
5043856
to
6b2ceb1
Compare
1c2248a
to
ab23dc7
Compare
ab23dc7
to
e38cf50
Compare
@@ -926,6 +926,28 @@ def test_source_package_as_package_part_omitted(self): | |||
self.filenames_not_in(lines, "p1b") | |||
self.assertEqual(lines['p1c'], 0) | |||
|
|||
def test_ambigious_source_package_as_dir(self): |
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.
ambiguous
was probably intended here!
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!
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.
Fixes: #268