Fixture to manage AgentOps session.
(agentops_client)
| 41 | |
| 42 | @pytest.fixture |
| 43 | def agentops_session(agentops_client): |
| 44 | """Fixture to manage AgentOps session.""" |
| 45 | agentops.start_session() |
| 46 | yield |
| 47 | agentops.end_all_sessions() |
| 48 | |
| 49 | |
| 50 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…