Skip to content

Commit

Permalink
redis dependency was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Nov 4, 2024
1 parent c873dff commit 7087885
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
from pytest_mock.plugin import MockerFixture
from pytest_simcore.helpers.typing_env import EnvVarsDict
from settings_library.rabbit import RabbitSettings
from settings_library.redis import RedisSettings
from simcore_postgres_database.models.comp_pipeline import StateType
from simcore_postgres_database.models.comp_tasks import NodeClass
from simcore_postgres_database.utils_projects_nodes import ProjectNodesRepo
Expand All @@ -65,7 +66,7 @@
)
from simcore_service_director_v2.utils.computations import to_node_class

pytest_simcore_core_services_selection = ["postgres", "rabbit"]
pytest_simcore_core_services_selection = ["postgres", "rabbit", "redis"]
pytest_simcore_ops_services_selection = [
"adminer",
]
Expand All @@ -84,6 +85,7 @@ def minimal_configuration(
mock_env: EnvVarsDict,
postgres_host_config: dict[str, str],
rabbit_service: RabbitSettings,
redis_service: RedisSettings,
monkeypatch: pytest.MonkeyPatch,
mocked_rabbit_mq_client: None,
faker: Faker,
Expand Down

0 comments on commit 7087885

Please sign in to comment.