mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-14 07:28:17 +08:00
16 lines
448 B
Python
16 lines
448 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={})
|