2024-04-18 05:43:15 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -x
|
|
|
|
|
|
2025-05-06 09:02:40 +00:00
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
|
|
|
cd "$SCRIPT_DIR/../.."
|
|
|
|
|
|
2025-10-16 14:15:03 +00:00
|
|
|
PYTEST_TIMEOUT="${PYTEST_TIMEOUT:-180}"
|
|
|
|
|
|
|
|
|
|
pytest --timeout "${PYTEST_TIMEOUT}" api/tests/integration_tests/model_runtime/anthropic \
|
2024-04-18 05:43:15 +00:00
|
|
|
api/tests/integration_tests/model_runtime/azure_openai \
|
|
|
|
|
api/tests/integration_tests/model_runtime/openai api/tests/integration_tests/model_runtime/chatglm \
|
|
|
|
|
api/tests/integration_tests/model_runtime/google api/tests/integration_tests/model_runtime/xinference \
|
2024-08-02 12:48:09 +00:00
|
|
|
api/tests/integration_tests/model_runtime/huggingface_hub/test_llm.py \
|
2024-09-22 02:13:00 +00:00
|
|
|
api/tests/integration_tests/model_runtime/upstage \
|
2024-09-23 11:57:21 +00:00
|
|
|
api/tests/integration_tests/model_runtime/fireworks \
|
2024-09-24 03:20:15 +00:00
|
|
|
api/tests/integration_tests/model_runtime/nomic \
|
2024-09-29 08:55:59 +00:00
|
|
|
api/tests/integration_tests/model_runtime/mixedbread \
|
2025-04-29 10:04:33 +00:00
|
|
|
api/tests/integration_tests/model_runtime/voyage
|