2019-04-19 07:23:08 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
|
2019-04-08 01:08:59 +08:00
|
|
|
def pytest_collection_modifyitems(config, items):
|
2019-04-19 07:23:08 +08:00
|
|
|
"""Prefer faster tests.
|
|
|
|
|
|
|
|
Use a hookwrapper to do this in the beginning, so e.g. --ff still works
|
|
|
|
correctly.
|
|
|
|
"""
|
2019-04-08 01:08:59 +08:00
|
|
|
fast_items = []
|
|
|
|
slow_items = []
|
|
|
|
neutral_items = []
|
|
|
|
|
|
|
|
slow_fixturenames = ("testdir",)
|
|
|
|
|
|
|
|
for item in items:
|
|
|
|
try:
|
|
|
|
fixtures = item.fixturenames
|
|
|
|
except AttributeError:
|
|
|
|
# doctest at least
|
|
|
|
# (https://github.com/pytest-dev/pytest/issues/5070)
|
|
|
|
neutral_items.append(item)
|
|
|
|
else:
|
|
|
|
if any(x for x in fixtures if x in slow_fixturenames):
|
|
|
|
slow_items.append(item)
|
|
|
|
else:
|
|
|
|
marker = item.get_closest_marker("slow")
|
|
|
|
if marker:
|
|
|
|
slow_items.append(item)
|
|
|
|
else:
|
|
|
|
fast_items.append(item)
|
|
|
|
|
|
|
|
items[:] = fast_items + neutral_items + slow_items
|
2019-04-19 07:23:08 +08:00
|
|
|
|
|
|
|
yield
|