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 917b9e8 commit 522c336Copy full SHA for 522c336
packages/pytest-simcore/src/pytest_simcore/simcore_services.py
@@ -115,13 +115,12 @@ class ServiceHealthcheckEndpoint:
115
@classmethod
116
def create(cls, service_name: str, baseurl):
117
# TODO: unify healthcheck policies see https://github.com/ITISFoundation/osparc-simcore/pull/2281
118
- obj = cls(
+ return cls(
119
name=service_name,
120
url=URL(
121
f"{baseurl}{MAP_SERVICE_HEALTHCHECK_ENTRYPOINT.get(service_name, DEFAULT_SERVICE_HEALTHCHECK_ENTRYPOINT)}"
122
),
123
)
124
- return obj
125
126
127
@pytest.fixture(scope="module")
0 commit comments