Skip to content

Commit b446efc

Browse files
committed
Changes
1 parent 999ae2b commit b446efc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration/test_launch_apertus.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ async def _wait_for_job_running(
9595
if status == JobStatus.TIMEOUT:
9696
pytest.fail(f"Job {job_id} timed out before becoming RUNNING.")
9797
await asyncio.sleep(poll_interval_seconds)
98-
pytest.fail(
99-
f"Job {job_id} did not reach RUNNING within {timeout_minutes} minutes."
100-
)
98+
pytest.fail(f"Job {job_id} did not reach RUNNING within {timeout_minutes} minutes.")
10199

102100

103101
async def _wait_for_model_healthy(
@@ -134,5 +132,7 @@ async def test_launch_apertus_and_health(launcher, cscs_api_key):
134132
assert status == JobStatus.RUNNING
135133

136134
# Wait for the model endpoint to become HEALTHY
137-
health = await _wait_for_model_healthy(served_model_name, cscs_api_key, health_timeout)
135+
health = await _wait_for_model_healthy(
136+
served_model_name, cscs_api_key, health_timeout
137+
)
138138
assert health == ModelHealth.HEALTHY

0 commit comments

Comments
 (0)