Skip to content

Commit 281573f

Browse files
committed
DBG disable pytest_collection_modifyitems
1 parent abfcfb5 commit 281573f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/install/conftest.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ def collect_dependencies(config, item, items):
4545

4646
return 0
4747

48-
# #@pytest.hookimpl(trylast=True)
49-
def pytest_collection_modifyitems(config: pytest.Config, items: list[pytest.Item]) -> None:
50-
added_count = 0
51-
for item in items:
52-
added_count += collect_dependencies(config, item, items)
53-
print(f"collected {added_count} additional items")
48+
# # #@pytest.hookimpl(trylast=True)
49+
# def pytest_collection_modifyitems(config: pytest.Config, items: list[pytest.Item]) -> None:
50+
# added_count = 0
51+
# for item in items:
52+
# added_count += collect_dependencies(config, item, items)
53+
# print(f"collected {added_count} additional items")
5454

5555
@pytest.fixture(scope='function')
5656
def answerfile(request):

0 commit comments

Comments
 (0)