mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 23:11:37 +08:00
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
|
|
"""Fast-path fixtures shared across tests/run_agent/.
|
||
|
|
|
||
|
|
Many tests in this directory exercise the retry/backoff paths in the
|
||
|
|
agent loop. Production code uses ``jittered_backoff(base_delay=5.0)``
|
||
|
|
with a ``while time.time() < sleep_end`` loop — a single retry test
|
||
|
|
spends 5+ seconds of real wall-clock time on backoff waits.
|
||
|
|
|
||
|
|
Mocking ``jittered_backoff`` to return 0.0 collapses the while-loop
|
||
|
|
to a no-op (``time.time() < time.time() + 0`` is false immediately),
|
||
|
|
which handles the most common case without touching ``time.sleep``.
|
||
|
|
|
||
|
|
We deliberately DO NOT mock ``time.sleep`` here — some tests
|
||
|
|
(test_interrupt_propagation, test_primary_runtime_restore, etc.) use
|
||
|
|
the real ``time.sleep`` for threading coordination or assert that it
|
||
|
|
was called with specific values. Tests that want to additionally
|
||
|
|
fast-path direct ``time.sleep(N)`` calls in production code should
|
||
|
|
monkeypatch ``run_agent.time.sleep`` locally (see
|
||
|
|
``test_anthropic_error_handling.py`` for the pattern).
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture(autouse=True)
|
||
|
|
def _fast_retry_backoff(monkeypatch):
|
||
|
|
"""Short-circuit retry backoff for all tests in this directory."""
|
||
|
|
try:
|
||
|
|
import run_agent
|
||
|
|
except ImportError:
|
||
|
|
return
|
||
|
|
|
||
|
|
monkeypatch.setattr(run_agent, "jittered_backoff", lambda *a, **k: 0.0)
|