Merge pull request #7315 from bluetech/rm-__multicall__

testing: change a test to not use deprecated pluggy __multicall__ protocol
This commit is contained in:
Anthony Sottile 2020-06-03 12:31:35 -07:00 committed by GitHub
commit e75531791d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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):