27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From 1f7c3185124052740814fe5734e8c98f9c54f47c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= <gaborjbernat@gmail.com>
|
|
Date: Wed, 30 Aug 2023 19:01:20 +0200
|
|
Subject: [PATCH] Fix tests with pluggy 1.2.0+
|
|
|
|
Manually cherry-picked from 9f9dc6250fc88e92b1ca6206429966788846d696
|
|
---
|
|
tests/conftest.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/conftest.py b/tests/conftest.py
|
|
index 68924dc..d23b22e 100644
|
|
--- a/tests/conftest.py
|
|
+++ b/tests/conftest.py
|
|
@@ -23,7 +23,7 @@ def pytest_configure(config):
|
|
"""Ensure randomly is called before we re-order"""
|
|
manager = config.pluginmanager
|
|
# noinspection PyProtectedMember
|
|
- order = manager.hook.pytest_collection_modifyitems._nonwrappers
|
|
+ order = manager.hook.pytest_collection_modifyitems._hookimpls
|
|
dest = next((i for i, p in enumerate(order) if p.plugin is manager.getplugin("randomly")), None)
|
|
if dest is not None:
|
|
from_pos = next(i for i, p in enumerate(order) if p.plugin is manager.getplugin(__file__))
|
|
--
|
|
2.40.1
|
|
|