Create an agentops session
(agentops_init)
| 12 | |
| 13 | @pytest.fixture |
| 14 | def agentops_session(agentops_init): |
| 15 | """Create an agentops session""" |
| 16 | session = agentops.start_session() |
| 17 | |
| 18 | assert session, "Failed agentops.start_session() returned None." |
| 19 | yield session |
| 20 | agentops.end_all_sessions() |
| 21 | |
| 22 | |
| 23 | def test_logs_read_write_to_session(agentops_session: Session): |
nothing calls this directly
no test coverage detected
searching dependent graphs…