Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion flame_hub/_core_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down