From ef255954913891b4562b0080f2d66bdd6fc9a289 Mon Sep 17 00:00:00 2001 From: pbrassel <52356233+pbrassel@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:38:03 +0100 Subject: [PATCH 1/2] fix(core): update `ProcessStatus` according to hub version 0.8.27 --- flame_hub/_core_client.py | 2 +- tests/test_core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flame_hub/_core_client.py b/flame_hub/_core_client.py index 85aafe8..503ea9b 100644 --- a/flame_hub/_core_client.py +++ b/flame_hub/_core_client.py @@ -145,7 +145,7 @@ def ensure_position_none(value: t.Any) -> t.Any: return value -ProcessStatus = t.Literal["starting", "started", "stopping", "stopped", "finished", "failed"] +ProcessStatus = t.Literal["starting", "started", "stopping", "stopped", "executing", "executed", "failed"] class MasterImage(BaseModel): diff --git a/tests/test_core.py b/tests/test_core.py index 9309480..c82de03 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -461,7 +461,7 @@ def _wait_for_successful_build(): analysis = core_client.get_analysis(analysis_id=configured_analysis.id) else: raise e - assert analysis.build_status == "finished" + assert analysis.build_status == "executed" assert analysis.build_progress == 100 assert_eventually(_wait_for_successful_build) From 5565f452c3ebc65ff1e559aca17eb953cf2f241e Mon Sep 17 00:00:00 2001 From: pbrassel <52356233+pbrassel@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:38:41 +0100 Subject: [PATCH 2/2] chore: bump tested hub version --- .env.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.test b/.env.test index 123f9a5..491ed93 100644 --- a/.env.test +++ b/.env.test @@ -7,4 +7,4 @@ PYTEST_ADMIN_PASSWORD=start123 PYTEST_DEFAULT_MASTER_IMAGE=python/base PYTEST_ASYNC_MAX_RETRIES=5 PYTEST_ASYNC_RETRY_DELAY_MILLIS=500 -PYTEST_HUB_VERSION=0.8.26 +PYTEST_HUB_VERSION=0.8.27