diff --git a/conftest.py b/conftest.py --- a/conftest.py +++ b/conftest.py @@ -5,7 +5,11 @@ import pytest -pytest_plugins = ["swh.scheduler.pytest_plugin", "swh.storage.pytest_plugin"] +pytest_plugins = [ + "swh.scheduler.pytest_plugin", + "swh.storage.pytest_plugin", + "swh.core.pytest_plugin", +] @pytest.fixture(scope="session") diff --git a/pytest.ini b/pytest.ini --- a/pytest.ini +++ b/pytest.ini @@ -1,6 +1,6 @@ [pytest] # Remove the pytest_swh_* entries when they stop getting imported automatically -addopts = -p no:flask -p no:pytest_swh_scheduler -p no:pytest_swh_storage +addopts = -p no:flask -p no:pytest_swh_scheduler -p no:pytest_swh_storage -p no:pytest_swh_core norecursedirs = docs .* DJANGO_SETTINGS_MODULE = swh.deposit.settings.testing