Files
OpenBB/openbb_platform/providers/tests/utils/credentials_schema.py
Danglewood e0868c73d1 [BugFix] Remove Polygon - No Longer Exists and Can't Support (#7337)
* remove polygon - no longer exists and can't support

* update metadata asset

* dev_install.py
2026-01-27 15:48:15 +00:00

12 lines
407 B
Python

"""Provider credentials schema used for unit test."""
test_credentials: dict[str, tuple[str, str]] = {
"benzinga": ("token", "MOCK_TOKEN"),
"alpha_vantage": ("apikey", "MOCK_API_KEY"),
"fmp": ("apikey", "MOCK_API_KEY"),
"nasdaq": ("x-api-token", "MOCK_API_KEY"),
"fred": ("api_key", "MOCK_API_KEY"),
"intrinio": ("api_key", "MOCK_API_KEY"),
"tiingo": ("token", "MOCK_TOKEN"),
}