From bf01cf534fc9d9b4f48aa84db080180e02305182 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 19 Nov 2023 08:47:58 -0800 Subject: [PATCH] Change make ftest to not retry or export tests, since ftest is used for local testing --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1be71c7..96c2a13 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ test: ftest: go clean -testcache - TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=3 --format testname --jsonfile /tmp/testrun.json --post-run-command "go run client/test_metrics_exporter/main.go" -- -p 1 -run "$(FILTER)" -timeout 60m + TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=0 --format testname -- -p 1 -run "$(FILTER)" -timeout 60m acttest: act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64