Skip to content

Commit fc040a5

Browse files
committed
Create Way to force package even if filepath exists
Fixes: nedbat#268
1 parent c315908 commit fc040a5

File tree

8 files changed

+28
-1
lines changed

8 files changed

+28
-1
lines changed

coverage/config.py

+2
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ def __init__(self):
195195
self.run_include = None
196196
self.run_omit = None
197197
self.source = None
198+
self.source_pkgs = []
198199
self.timid = False
199200
self._crash = None
200201

@@ -361,6 +362,7 @@ def copy(self):
361362
('run_include', 'run:include', 'list'),
362363
('run_omit', 'run:omit', 'list'),
363364
('source', 'run:source', 'list'),
365+
('source_pkgs', 'run:source_pkgs', 'list'),
364366
('timid', 'run:timid', 'boolean'),
365367
('_crash', 'run:_crash'),
366368

coverage/control.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(
100100
self, data_file=_DEFAULT_DATAFILE, data_suffix=None, cover_pylib=None,
101101
auto_data=False, timid=None, branch=None, config_file=True,
102102
source=None, omit=None, include=None, debug=None,
103-
concurrency=None, check_preimported=False, context=None,
103+
concurrency=None, check_preimported=False, context=None, **kwargs
104104
):
105105
"""
106106
Many of these arguments duplicate and override values that can be
@@ -191,6 +191,7 @@ def __init__(
191191
source=source, run_omit=omit, run_include=include, debug=debug,
192192
report_omit=omit, report_include=include,
193193
concurrency=concurrency, context=context,
194+
**kwargs
194195
)
195196

196197
# This is injectable by tests.

coverage/inorout.py

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ def __init__(self, warn, debug):
132132

133133
def configure(self, config):
134134
"""Apply the configuration to get ready for decision-time."""
135+
self.source_pkgs.extend(config.source_pkgs)
135136
for src in config.source or []:
136137
if os.path.isdir(src):
137138
self.source.append(canonical_filename(src))

tests/modules/ambigious/__init__.py

Whitespace-only changes.

tests/modules/ambigious/pkg1/__init__.py

Whitespace-only changes.

tests/modules/ambigious/pkg1/ambigious.py

Whitespace-only changes.

tests/test_api.py

+21
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,27 @@ def test_source_package_as_dir(self):
895895
# Because source= was specified, we do search for unexecuted files.
896896
self.assertEqual(lines['p1c'], 0)
897897

898+
def test_ambigious_source_package_as_dir(self):
899+
# pkg1 is a directory and a pkg, since we cd into tests/modules/ambigious
900+
self.chdir(self.nice_file(TESTS_DIR, 'modules', "ambigious"))
901+
lines = self.coverage_usepkgs(source=["pkg1"])
902+
self.assertEqual(
903+
self.coverage_usepkgs(source=["pkg1"]),
904+
{
905+
u'__init__.py': 0, u'__init__': 0,
906+
u"ambigious.py": 0, u"ambigious": 0,
907+
},
908+
)
909+
910+
def test_ambigious_source_package_as_package(self):
911+
# pkg1 is a directory and a pkg, since we cd into tests/modules/ambigious
912+
self.chdir(self.nice_file(TESTS_DIR, 'modules', "ambigious"))
913+
lines = self.coverage_usepkgs(source_pkgs=["pkg1"])
914+
self.filenames_in(lines, "p1a p1b")
915+
self.filenames_not_in(lines, "p2a p2b othera otherb osa osb ambigious")
916+
# Because source= was specified, we do search for unexecuted files.
917+
self.assertEqual(lines['p1c'], 0)
918+
898919
def test_source_package_as_package(self):
899920
lines = self.coverage_usepkgs(source=["pkg1.sub"])
900921
self.filenames_not_in(lines, "p2a p2b othera otherb osa osb")

tests/test_config.py

+2
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ class ConfigFileTest(UsingModulesMixin, CoverageTest):
462462
; this omit is overriden by the omit from [report]
463463
omit = twenty
464464
source = myapp
465+
source_pkgs = ned
465466
plugins =
466467
plugins.a_plugin
467468
plugins.another
@@ -553,6 +554,7 @@ def assert_config_settings_are_correct(self, cov):
553554
self.assertTrue(cov.config.parallel)
554555
self.assertEqual(cov.config.concurrency, ["thread"])
555556
self.assertEqual(cov.config.source, ["myapp"])
557+
self.assertEqual(cov.config.source_pkgs, ["ned"])
556558
self.assertEqual(cov.config.disable_warnings, ["abcd", "efgh"])
557559

558560
self.assertEqual(cov.get_exclude_list(), ["if 0:", r"pragma:?\s+no cover", "another_tab"])

0 commit comments

Comments
 (0)