diff --git a/justfile b/justfile index 6bf429b9f..ca39dbc3a 100644 --- a/justfile +++ b/justfile @@ -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 diff --git a/tests/e2e/test_hermes_e2e.py b/tests/e2e/test_hermes_e2e.py index 2b13e5312..4b798a59b 100644 --- a/tests/e2e/test_hermes_e2e.py +++ b/tests/e2e/test_hermes_e2e.py @@ -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():