diff --git a/tutorials/conftest.py b/tutorials/conftest.py index f4512ee..451e3df 100644 --- a/tutorials/conftest.py +++ b/tutorials/conftest.py @@ -11,13 +11,9 @@ pytest_addoption = nbvalx.pytest_hooks_notebooks.addoption pytest_sessionstart = nbvalx.pytest_hooks_notebooks.sessionstart pytest_collect_file = nbvalx.pytest_hooks_notebooks.collect_file -pytest_runtest_makereport = nbvalx.pytest_hooks_notebooks.runtest_makereport -pytest_runtest_teardown = nbvalx.pytest_hooks_notebooks.runtest_teardown def pytest_runtest_setup(item: nbvalx.pytest_hooks_notebooks.IPyNbFile) -> None: """Skip tests if dolfinx is not available.""" - # Do the setup as in nbvalx - nbvalx.pytest_hooks_notebooks.runtest_setup(item) # Check dolfinx availability pytest.importorskip("dolfinx")