Test that Huggingface environment variables are properly configured.
()
| 7 | |
| 8 | |
| 9 | def test_huggingface_env_vars(): |
| 10 | """Test that Huggingface environment variables are properly configured.""" |
| 11 | assert "huggingface" in ENV_VARS |
| 12 | assert any( |
| 13 | detail.get("key_name") == "HF_TOKEN" for detail in ENV_VARS["huggingface"] |
| 14 | ) |
| 15 | |
| 16 | |
| 17 | def test_huggingface_models(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…