()
| 19 | |
| 20 | @pytest.fixture(scope="module") |
| 21 | def api_key(): |
| 22 | api_key = os.getenv("TEST_HUME_API_KEY") or os.getenv("HUME_API_KEY") |
| 23 | if not api_key: |
| 24 | pytest.skip("API key is required. Set TEST_HUME_API_KEY or HUME_API_KEY.") |
| 25 | return api_key |
| 26 | |
| 27 | |
| 28 | @pytest.fixture(scope="function") |
nothing calls this directly
no outgoing calls
no test coverage detected