This commit is contained in:
Alex Hall 2025-03-20 13:56:11 +02:00
parent 7031d4ab87
commit ea3e8ce230
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ sync:
.PHONY: format
format:
uv run ruff format
uv run ruff check --fix
.PHONY: lint
lint:

View file

@ -9,7 +9,7 @@ from agents import Agent, RunConfig, Runner, trace
from .fake_model import FakeModel
from .test_responses import get_text_message
from .testing_processor import fetch_normalized_spans, fetch_ordered_spans, fetch_traces
from .testing_processor import fetch_normalized_spans, fetch_traces
@pytest.mark.asyncio