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 838bc84 commit 4b8dc22Copy full SHA for 4b8dc22
packages/pytest-simcore/src/pytest_simcore/simcore_dask_service.py
@@ -27,9 +27,12 @@ async def dask_scheduler_service(
27
)
28
# override the port
29
monkeypatch.setenv("DASK_SCHEDULER_PORT", f"{dask_scheduler_api_port}")
30
- return AnyUrl.build(
31
- scheme="tls", host=get_localhost_ip(), port=dask_scheduler_api_port
+ url = AnyUrl.build(
+ scheme="tls",
32
+ host=get_localhost_ip(),
33
+ port=int(dask_scheduler_api_port),
34
35
+ return f"{url}"
36
37
38
@pytest.fixture
0 commit comments