(memory_exporter)
| 115 | |
| 116 | |
| 117 | def test_run_ids_absent_by_default(memory_exporter): |
| 118 | with agent_run_span("openai-agent", model="openai/gpt-5", question="q"): |
| 119 | pass |
| 120 | |
| 121 | s = memory_exporter.get_finished_spans()[0] |
| 122 | assert "agent.run_id" not in s.attributes |
| 123 | assert "agent.scenario_id" not in s.attributes |
| 124 | |
| 125 | |
| 126 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected