diff --git a/src/_pytest/config/__init__.py b/src/_pytest/config/__init__.py index dee3d4974..174d80a01 100644 --- a/src/_pytest/config/__init__.py +++ b/src/_pytest/config/__init__.py @@ -538,7 +538,7 @@ class PytestPluginManager(PluginManager): # Optimization: avoid repeated searches in the same directory. # Assumes always called with same importmode and rootpath. existing_clist = self._dirpath2confmods.get(directory) - if existing_clist: + if existing_clist is not None: return existing_clist # XXX these days we may rather want to use config.rootpath