diff --git a/diracx-routers/tests/jobs/test_sandboxes.py b/diracx-routers/tests/jobs/test_sandboxes.py index de73b56a6..ee5dab1e2 100644 --- a/diracx-routers/tests/jobs/test_sandboxes.py +++ b/diracx-routers/tests/jobs/test_sandboxes.py @@ -13,7 +13,13 @@ from diracx.routers.auth.utils import AuthSettings pytestmark = pytest.mark.enabled_dependencies( - ["AuthSettings", "SandboxMetadataDB", "SandboxStoreSettings"] + [ + "AuthSettings", + "JobDB", + "JobLoggingDB", + "SandboxMetadataDB", + "SandboxStoreSettings", + ] ) diff --git a/diracx-testing/src/diracx/testing/__init__.py b/diracx-testing/src/diracx/testing/__init__.py index aacee5903..d003bdb05 100644 --- a/diracx-testing/src/diracx/testing/__init__.py +++ b/diracx-testing/src/diracx/testing/__init__.py @@ -127,7 +127,7 @@ def __init__(self, key): def __call__(self): raise NotImplementedError( - f"{self.key} has not been made available to this test!" + f"{self.key} has not been made available to this test! Please add it to pytest.mark.enabled_dependencies" )