This commit is contained in:
2025-08-16 13:58:40 +02:00
parent 542996a0ff
commit 30a09e6d53
38 changed files with 363 additions and 309 deletions

View File

@@ -6,20 +6,20 @@ echo "=========================================="
echo ""
echo "1⃣ Running Simple Redis Tests (4 tests)..."
echo "----------------------------------------------"
cargo test --test simple_redis_test -- --nocapture
cargo test -p herodb --test simple_redis_test -- --nocapture
echo ""
echo "2⃣ Running Comprehensive Redis Integration Tests (13 tests)..."
echo "----------------------------------------------------------------"
cargo test --test redis_integration_tests -- --nocapture
cargo test --test redis_basic_client -- --nocapture
cargo test --test debug_hset -- --nocapture
cargo test --test debug_hset_simple -- --nocapture
cargo test -p herodb --test redis_integration_tests -- --nocapture
cargo test -p herodb --test redis_basic_client -- --nocapture
cargo test -p herodb --test debug_hset -- --nocapture
cargo test -p herodb --test debug_hset_simple -- --nocapture
echo ""
echo "3⃣ Running All Tests..."
echo "------------------------"
cargo test -- --nocapture
echo "3⃣ Running All Workspace Tests..."
echo "--------------------------------"
cargo test --workspace -- --nocapture
echo ""
echo "✅ Test execution completed!"