2024-04-24 13:52:42 +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/vdb/chroma \
|
2024-06-25 07:48:02 +00:00
|
|
|
api/tests/integration_tests/vdb/milvus \
|
|
|
|
|
api/tests/integration_tests/vdb/pgvecto_rs \
|
|
|
|
|
api/tests/integration_tests/vdb/pgvector \
|
|
|
|
|
api/tests/integration_tests/vdb/qdrant \
|
2024-10-23 11:14:24 +00:00
|
|
|
api/tests/integration_tests/vdb/weaviate \
|
|
|
|
|
api/tests/integration_tests/vdb/elasticsearch \
|
|
|
|
|
api/tests/integration_tests/vdb/vikingdb \
|
|
|
|
|
api/tests/integration_tests/vdb/baidu \
|
|
|
|
|
api/tests/integration_tests/vdb/tcvectordb \
|
2024-10-29 07:00:23 +00:00
|
|
|
api/tests/integration_tests/vdb/upstash \
|
|
|
|
|
api/tests/integration_tests/vdb/couchbase \
|
2024-10-29 13:10:18 +00:00
|
|
|
api/tests/integration_tests/vdb/oceanbase \
|
2024-12-15 09:16:40 +00:00
|
|
|
api/tests/integration_tests/vdb/tidb_vector \
|
2025-04-22 05:03:35 +00:00
|
|
|
api/tests/integration_tests/vdb/huawei \
|