Files
wehub-resource-sync f36e2104d8
sep-tests / ragflow_preflight (push) Waiting to run
sep-tests / ragflow_tests_infinity (push) Blocked by required conditions
sep-tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
tests / ragflow_preflight (push) Waiting to run
tests / ragflow_tests_infinity (push) Blocked by required conditions
tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
chore: import upstream snapshot with attribution
2026-07-13 12:16:49 +08:00

31 lines
776 B
Bash
Executable File

#!/bin/bash
set -e
PACKAGES=(
"./internal/admin/..."
# "./internal/binding/..."
"./internal/cache/..."
"./internal/cli/..."
"./internal/common/..."
"./internal/dao/..."
"./internal/engine/..."
"./internal/entity/..."
"./internal/handler/..."
"./internal/ingestion/..."
"./internal/router/..."
"./internal/server/..."
"./internal/service/..."
"./internal/storage/..."
"./internal/tokenizer/..."
"./internal/utility/..."
)
echo "Running tests for specific packages..."
for pkg in "${PACKAGES[@]}"; do
echo "=== Testing $pkg ==="
go test $pkg -v -cover -test.v
echo ""
done
#echo "Running all tests except failed packages..."
#go test $(go list ./internal/... | grep -v -E '(cli|service|binding)$') -v