mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-17 03:37:23 +08:00
* remove polygon - no longer exists and can't support * update metadata asset * dev_install.py
12 lines
407 B
Python
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"),
|
|
}
|