Fix deprecated @pytest.mark.hookwrapper
authorMatthias Goergens <matthias.goergens@gmail.com>
Fri, 7 Apr 2023 07:34:43 +0000 (15:34 +0800)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 7 Apr 2023 14:31:58 +0000 (15:31 +0100)
```
PytestDeprecationWarning: The hookimpl pytest_pyfunc_call uses old-style configuration options (marks or attributes).
  Please use the pytest.hookimpl(hookwrapper=True) decorator instead
   to configure the hooks.
   See https://docs.pytest.org/en/latest/deprecations.html#configuring-hook-specs-impls-using-markers
    @pytest.mark.hookwrapper
```

test/conftest.py

index 6e46d5dee6445fb511de9698fd2d37b1740b9177..f52818928466e325ee14963f68e1acbd1d56159a 100644 (file)
@@ -14,7 +14,7 @@ import threading
 # example, if a request handler raises an exception, the server first signals an
 # error to FUSE (causing the test to fail), and then logs the exception. Without
 # the extra delay, the exception will go into nowhere.
-@pytest.mark.hookwrapper
+@pytest.hookimpl(hookwrapper=True)
 def pytest_pyfunc_call(pyfuncitem):
     outcome = yield
     failed = outcome.excinfo is not None