testing: change a test to not use deprecated pluggy __multicall__ protocol
It is slated to be removed in pluggy 1.0.
This commit is contained in:
parent
61a6ac9705
commit
2e219ad4f3
|
@ -506,9 +506,10 @@ def test_runtest_in_module_ordering(testdir) -> None:
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def mylist(self, request):
|
def mylist(self, request):
|
||||||
return request.function.mylist
|
return request.function.mylist
|
||||||
def pytest_runtest_call(self, item, __multicall__):
|
@pytest.hookimpl(hookwrapper=True)
|
||||||
|
def pytest_runtest_call(self, item):
|
||||||
try:
|
try:
|
||||||
__multicall__.execute()
|
(yield).get_result()
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
def test_hello1(self, mylist):
|
def test_hello1(self, mylist):
|
||||||
|
|
Loading…
Reference in New Issue