Move handling of duplicate files
This removes the hack added in https://github.com/pytest-dev/pytest/pull/3802.
Adjusts test:
- it appears to not have been changed to 7 intentionally.
- removes XXX comment, likely not relevant anymore since 6dac7743
.
This commit is contained in:
parent
56e6bb0ff6
commit
d65f300988
|
@ -281,15 +281,6 @@ def pytest_ignore_collect(path, config):
|
||||||
if _in_venv(path) and not allow_in_venv:
|
if _in_venv(path) and not allow_in_venv:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# Skip duplicate paths.
|
|
||||||
keepduplicates = config.getoption("keepduplicates")
|
|
||||||
duplicate_paths = config.pluginmanager._duplicatepaths
|
|
||||||
if not keepduplicates:
|
|
||||||
if path in duplicate_paths:
|
|
||||||
return True
|
|
||||||
else:
|
|
||||||
duplicate_paths.add(path)
|
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
@ -559,6 +550,16 @@ class Session(nodes.FSCollector):
|
||||||
if not self.isinitpath(path):
|
if not self.isinitpath(path):
|
||||||
if ihook.pytest_ignore_collect(path=path, config=self.config):
|
if ihook.pytest_ignore_collect(path=path, config=self.config):
|
||||||
return ()
|
return ()
|
||||||
|
|
||||||
|
# Skip duplicate paths.
|
||||||
|
keepduplicates = self.config.getoption("keepduplicates")
|
||||||
|
if not keepduplicates:
|
||||||
|
duplicate_paths = self.config.pluginmanager._duplicatepaths
|
||||||
|
if path in duplicate_paths:
|
||||||
|
return ()
|
||||||
|
else:
|
||||||
|
duplicate_paths.add(path)
|
||||||
|
|
||||||
return ihook.pytest_collect_file(path=path, parent=self)
|
return ihook.pytest_collect_file(path=path, parent=self)
|
||||||
|
|
||||||
def _recurse(self, path):
|
def _recurse(self, path):
|
||||||
|
|
|
@ -552,15 +552,6 @@ class Package(Module):
|
||||||
return path in self.session._initialpaths
|
return path in self.session._initialpaths
|
||||||
|
|
||||||
def collect(self):
|
def collect(self):
|
||||||
# XXX: HACK!
|
|
||||||
# Before starting to collect any files from this package we need
|
|
||||||
# to cleanup the duplicate paths added by the session's collect().
|
|
||||||
# Proper fix is to not track these as duplicates in the first place.
|
|
||||||
for path in list(self.session.config.pluginmanager._duplicatepaths):
|
|
||||||
# if path.parts()[:len(self.fspath.dirpath().parts())] == self.fspath.dirpath().parts():
|
|
||||||
if path.dirname.startswith(self.name):
|
|
||||||
self.session.config.pluginmanager._duplicatepaths.remove(path)
|
|
||||||
|
|
||||||
this_path = self.fspath.dirpath()
|
this_path = self.fspath.dirpath()
|
||||||
init_module = this_path.join("__init__.py")
|
init_module = this_path.join("__init__.py")
|
||||||
if init_module.check(file=1) and path_matches_patterns(
|
if init_module.check(file=1) and path_matches_patterns(
|
||||||
|
|
|
@ -219,7 +219,7 @@ class TestNewSession(SessionTests):
|
||||||
started = reprec.getcalls("pytest_collectstart")
|
started = reprec.getcalls("pytest_collectstart")
|
||||||
finished = reprec.getreports("pytest_collectreport")
|
finished = reprec.getreports("pytest_collectreport")
|
||||||
assert len(started) == len(finished)
|
assert len(started) == len(finished)
|
||||||
assert len(started) == 7 # XXX extra TopCollector
|
assert len(started) == 8
|
||||||
colfail = [x for x in finished if x.failed]
|
colfail = [x for x in finished if x.failed]
|
||||||
assert len(colfail) == 1
|
assert len(colfail) == 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue