mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
b035c02f78
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Co-authored-by: -LAN- <laipz8200@outlook.com>
24 lines
667 B
Python
24 lines
667 B
Python
import pytest
|
|
|
|
from core.tools.tool_manager import ToolManager
|
|
|
|
provider_generator = ToolManager.list_builtin_providers()
|
|
provider_names = [provider.identity.name for provider in provider_generator]
|
|
ToolManager.clear_builtin_providers_cache()
|
|
provider_generator = ToolManager.list_builtin_providers()
|
|
|
|
|
|
@pytest.mark.parametrize("name", provider_names)
|
|
def test_tool_providers(benchmark, name):
|
|
"""
|
|
Test that all tool providers can be loaded
|
|
"""
|
|
|
|
def test(generator):
|
|
try:
|
|
return next(generator)
|
|
except StopIteration:
|
|
return None
|
|
|
|
benchmark.pedantic(test, args=(provider_generator,), iterations=1, rounds=1)
|