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 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)