From 078a93b3503e378541c753a1cd45d2d597cea7df Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Wed, 11 Jun 2025 11:09:16 -0400 Subject: [PATCH] chore: make test without cache --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0239b62..c383d88 100644 --- a/Makefile +++ b/Makefile @@ -29,9 +29,9 @@ prepare-test: test: ./scripts/prepare_test_repos.sh $(TMP_DIR) - go test -v ./... + go test -count=1 -v ./... ci-test: ./scripts/prepare_test_repos.sh $(TMP_DIR) ./scripts/run_foreach_test_repos.sh $(TMP_DIR) "sed -i '3i \ \ \"sandboxExecServer\": \"172.17.0.1:5051\",' conf.json" - GITHUB_ACTOR="" go test -v ./... + GITHUB_ACTOR="" go test -count=1 -v ./...