mirror of
https://github.com/langgenius/dify.git
synced 2026-01-07 07:21:03 +00:00
20 lines
484 B
Python
20 lines
484 B
Python
|
|
import os
|
||
|
|
|
||
|
|
import pytest
|
||
|
|
|
||
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
||
|
|
from core.model_runtime.model_providers.sagemaker.sagemaker import SageMakerProvider
|
||
|
|
|
||
|
|
|
||
|
|
def test_validate_provider_credentials():
|
||
|
|
provider = SageMakerProvider()
|
||
|
|
|
||
|
|
with pytest.raises(CredentialsValidateFailedError):
|
||
|
|
provider.validate_provider_credentials(
|
||
|
|
credentials={}
|
||
|
|
)
|
||
|
|
|
||
|
|
provider.validate_provider_credentials(
|
||
|
|
credentials={}
|
||
|
|
)
|