We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ac5d4 commit 8895bedCopy full SHA for 8895bed
services/dynamic-sidecar/tests/unit/test_api_rest_health.py
@@ -1,17 +1,15 @@
1
# pylint: disable=redefined-outer-name
2
# pylint: disable=unused-argument
3
4
-import pytest
5
from async_asgi_testclient import TestClient
6
from fastapi import status
7
from simcore_service_dynamic_sidecar.models.schemas.application_health import (
8
ApplicationHealth,
9
)
10
11
-
12
-@pytest.fixture
13
-def test_client(test_client: TestClient) -> TestClient:
14
- return test_client
+pytest_simcore_core_services_selection = [
+ "postgres",
+]
15
16
17
async def test_is_healthy(test_client: TestClient) -> None:
0 commit comments