mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 04:02:42 +00:00
21 lines
536 B
Python
21 lines
536 B
Python
![]() |
import os
|
||
|
|
||
|
import pytest
|
||
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
||
|
from core.model_runtime.model_providers.cohere.cohere import CohereProvider
|
||
|
|
||
|
|
||
|
def test_validate_provider_credentials():
|
||
|
provider = CohereProvider()
|
||
|
|
||
|
with pytest.raises(CredentialsValidateFailedError):
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={}
|
||
|
)
|
||
|
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={
|
||
|
'api_key': os.environ.get('COHERE_API_KEY')
|
||
|
}
|
||
|
)
|