Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/api_internal/endpoints/test_rpc_api_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
from tests.test_utils.config import conf_vars
from tests.test_utils.decorators import dont_initialize_flask_app_submodules

pytestmark = pytest.mark.db_test
# Note: Sounds a bit strange to disable internal API tests in isolation mode but...
# As long as the test is modelled to run its own internal API endpoints, it is conflicting
# to the test setup with a dedicated internal API server.
pytestmark = [pytest.mark.db_test, pytest.mark.skip_if_database_isolation_mode]

if TYPE_CHECKING:
from flask import Flask
Expand Down