allure-python
allure-python copied to clipboard
items[:] assigned values twice in pytest_collection_modifyitems
https://github.com/allure-framework/allure-python/blob/6443d52affc92944aa156345e35f1f9c6d2dfef3/allure-pytest/src/plugin.py#L165
items[:] = select_by_testcase(items) < assigned
items[:] = select_by_labels(items, config) < assigned again immediately
Intentional or bug?
This hook implementation requires sorting the items list in-place
The code-in-question has changed in #628