tests: conftest: auto-add slow marker

This commit is contained in:
Daniel Hahler 2019-05-30 06:55:38 +02:00
parent b10f28949d
commit 28bf3816e7
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ def pytest_collection_modifyitems(config, items):
slowest_items.append(item)
else:
slow_items.append(item)
item.add_marker(pytest.mark.slow)
else:
marker = item.get_closest_marker("slow")
if marker: