Track performance metrics across tests.
()
| 320 | |
| 321 | @pytest.fixture |
| 322 | def performance_tracker(): |
| 323 | """Track performance metrics across tests.""" |
| 324 | metrics = { |
| 325 | "execution_times": [], |
| 326 | "token_usage": [], |
| 327 | "api_calls": [], |
| 328 | } |
| 329 | return metrics |
| 330 | |
| 331 | |
| 332 | # ============================================================================ |
nothing calls this directly
no outgoing calls
no test coverage detected