From 4b2ee750725a58c7d2e72fdab435f4e9a71d71fa Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Sat, 21 Feb 2026 13:58:19 -0500 Subject: [PATCH] chore: move test-native-with-redis.sh to scripts/testing/ --- scripts/{ => testing}/test-native-with-redis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename scripts/{ => testing}/test-native-with-redis.sh (93%) diff --git a/scripts/test-native-with-redis.sh b/scripts/testing/test-native-with-redis.sh similarity index 93% rename from scripts/test-native-with-redis.sh rename to scripts/testing/test-native-with-redis.sh index a66e889..50fd3c7 100755 --- a/scripts/test-native-with-redis.sh +++ b/scripts/testing/test-native-with-redis.sh @@ -31,7 +31,7 @@ echo "" # Run tests with native_libs build tag echo "Running tests with -tags native_libs..." -CGO_ENABLED=1 go test -tags native_libs -v ./tests/... 2>&1 | head -100 +CGO_ENABLED=1 go test -tags native_libs -v ./tests/benchmarks/... 2>&1 | head -100 TEST_EXIT=${PIPESTATUS[0]}