()
| 117 | |
| 118 | @pytest.fixture(scope="module") |
| 119 | def api_key(): |
| 120 | api_key = os.getenv("TEST_HUME_API_KEY") or os.getenv("HUME_API_KEY") |
| 121 | if not api_key: |
| 122 | pytest.skip("API key is required. Set TEST_HUME_API_KEY or HUME_API_KEY.") |
| 123 | return api_key |
| 124 | |
| 125 | |
| 126 | @pytest.fixture(scope="function") |
nothing calls this directly
no outgoing calls
no test coverage detected