mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-23 18:24:28 +08:00
20 lines
516 B
Python
20 lines
516 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.novita.novita import NovitaProvider
|
|
|
|
|
|
def test_validate_provider_credentials():
|
|
provider = NovitaProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(credentials={})
|
|
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
"api_key": os.environ.get("NOVITA_API_KEY"),
|
|
}
|
|
)
|