File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
services/dynamic-sidecar/tests/unit Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 99from fastapi import FastAPI
1010from pytest_simcore .helpers .monkeypatch_envs import EnvVarsDict
1111
12+ pytest_simcore_core_services_selection = [
13+ "postgres" ,
14+ ]
15+
16+ pytest_simcore_ops_services_selection = [
17+ "adminer" ,
18+ ]
19+
1220
1321@pytest .fixture
1422def mock_environment (mock_environment_with_envdevel : EnvVarsDict ) -> None :
Original file line number Diff line number Diff line change 1111 "postgres" ,
1212]
1313
14+ pytest_simcore_ops_services_selection = [
15+ "adminer" ,
16+ ]
17+
1418
1519async def test_is_healthy (test_client : TestClient ) -> None :
1620 test_client .application .state .application_health .is_healthy = True
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ async def app(
8383 mock_environment : EnvVarsDict ,
8484 mock_registry_service : AsyncMock ,
8585 mock_storage_check : None ,
86- mock_postgres_check : None ,
8786 mocker : MockerFixture ,
8887) -> AsyncIterable [FastAPI ]:
8988 mocker .patch (
You can’t perform that action at this time.
0 commit comments