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
11 changes: 8 additions & 3 deletions clients/hermes/scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ set -euo pipefail

cd "$(dirname "$0")/.."

# Tested against hermes-agent 0.15.2 (PyPI latest). Pin to the confirmed pod
# Hermes version once the image lane is pinned.
HERMES_SPEC="${HERMES_SPEC:-hermes-agent>=0.12,<1}"
# The upper bound is load-bearing, not caution. `--no-deps` means the host
# Hermes is installed without its tree, so any dependency its import chain
# grows becomes a collection error here. 0.19.0 grew one (`requests`, reached
# via gateway -> agent.turn_context -> agent.model_metadata) and turned the
# gate red on a repo nothing had changed. Raise this bound deliberately, with
# the suite green, rather than letting PyPI's latest decide.
# Green against hermes-agent 0.18.2.
HERMES_SPEC="${HERMES_SPEC:-hermes-agent>=0.12,<0.19}"

uv venv --clear
uv sync --group dev
Expand Down
Loading