Skip to content
Closed
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
6 changes: 4 additions & 2 deletions tests/integrations/openai_agents/test_openai_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@ async def test_client_span_custom_model(


@pytest.mark.parametrize("stream_gen_ai_spans", [True, False])
def test_agent_invocation_span_sync_no_pii(
@pytest.mark.asyncio
async def test_agent_invocation_span_sync_no_pii(
Comment thread
alexander-alderman-webb marked this conversation as resolved.
sentry_init,
capture_events,
capture_items,
Expand Down Expand Up @@ -1077,6 +1078,7 @@ def test_agent_invocation_span_sync_no_pii(


@pytest.mark.parametrize("stream_gen_ai_spans", [True, False])
@pytest.mark.asyncio
Comment thread
alexander-alderman-webb marked this conversation as resolved.
@pytest.mark.parametrize(
"instructions",
(
Expand Down Expand Up @@ -1170,7 +1172,7 @@ def test_agent_invocation_span_sync_no_pii(
),
],
)
def test_agent_invocation_span_sync(
async def test_agent_invocation_span_sync(
sentry_init,
capture_events,
capture_items,
Expand Down
Loading