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:
Ran Benita 2020-06-03 21:51:55 +03:00
parent 61a6ac9705
commit 2e219ad4f3
1 changed files with 3 additions and 2 deletions

View File

@ -506,9 +506,10 @@ def test_runtest_in_module_ordering(testdir) -> None:
@pytest.fixture
def mylist(self, request):
return request.function.mylist
def pytest_runtest_call(self, item, __multicall__):
@pytest.hookimpl(hookwrapper=True)
def pytest_runtest_call(self, item):
try:
__multicall__.execute()
(yield).get_result()
except ValueError:
pass
def test_hello1(self, mylist):