From 685bdb478c129cbdf9198afd3bd196980e7ebe67 Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 18 May 2026 13:18:03 +0200 Subject: [PATCH] MAINT: Remove print statement from pytest collection --- tests/conftest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index ac29a34a5..2c7878e01 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,7 +6,6 @@ def pytest_collection_modifyitems(config, items): if not config.getoption("-m"): for item in items: - print(item.keywords) skip_by_default = list(SKIP_BY_DEFAULT & set(item.keywords)) if skip_by_default: skip_marker = skip_by_default[0] # get first marker in case of multiple