We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19229fd + 793d99d commit 93a23ceCopy full SHA for 93a23ce
py/conftest.py
@@ -90,7 +90,9 @@ def pytest_ignore_collect(collection_path, config):
90
_drivers = set(drivers).difference(drivers_opt or drivers)
91
if drivers_opt:
92
_drivers.add("unit")
93
- return len([d for d in _drivers if d.lower() in collection_path.parts]) > 0
+ if len([d for d in _drivers if d.lower() in collection_path.parts]) > 0:
94
+ return True
95
+ return None
96
97
98
def pytest_generate_tests(metafunc):
0 commit comments