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 e6d5df1 commit 1fad825Copy full SHA for 1fad825
services/clusters-keeper/tests/unit/test_modules_clusters_management_task.py
@@ -13,7 +13,7 @@
13
from pytest_simcore.helpers.monkeypatch_envs import EnvVarsDict, setenvs_from_dict
14
from simcore_service_clusters_keeper.core.settings import ApplicationSettings
15
16
-_FAST_POLL_INTERVAL = 1
+_FAST_POLL_INTERVAL = 1 # seconds
17
18
19
@pytest.fixture
@@ -22,7 +22,7 @@ def app_environment(
22
monkeypatch: pytest.MonkeyPatch,
23
) -> EnvVarsDict:
24
return app_environment | setenvs_from_dict(
25
- monkeypatch, {"CLUSTERS_KEEPER_TASK_INTERVAL": f"{_FAST_POLL_INTERVAL}"}
+ monkeypatch, {"CLUSTERS_KEEPER_TASK_INTERVAL": f"PT{_FAST_POLL_INTERVAL}S"}
26
)
27
28
0 commit comments