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 justfile
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ test-python:
#!/usr/bin/env bash
set -euo pipefail
if [[ "{{ no_uv }}" != "true" ]]; then
uv sync --group test --no-group dev --extra claude --extra codex --extra deepagents --extra harbor --extra hermes --extra relay --extra runtime
uv sync --group test --no-group dev --extra claude --extra codex --extra deepagents --extra harbor --extra hermes --extra hermes-agent --extra relay --extra runtime
fi
uv run --no-sync pytest

Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/test_hermes_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
pytestmark = pytest.mark.usefixtures("requires_hermes_agent")


@pytest.mark.usefixtures("mock_nvidia_api_key")
@pytest.mark.usefixtures("mock_nvidia_api_key", "nemo_relay")
async def test_hermes_persistent_host_reuses_native_session(
code_review_agent_dir: Path,
api_server: str,
):
os.environ["ADAPTER_PYTHON"] = sys.executable
config = hermes_config()
config = with_relay(hermes_config())
config.harness.settings["base_url"] = f"{api_server}/v1"

with warnings.catch_warnings():
Expand Down
Loading