From 0319aeb5430dedc832487f5adb6fb37729fcb4e3 Mon Sep 17 00:00:00 2001 From: Tim Burks Date: Sun, 7 Jun 2020 12:50:00 -0700 Subject: [PATCH] Since some tests run separately-built binaries, clear the cache in "make test". (#184) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f79c622..d85321e 100644 --- a/Makefile +++ b/Makefile @@ -6,4 +6,6 @@ all: cd extensions/sample; make test: + # since some tests call separately-built binaries, clear the cache to ensure all get run + go clean -testcache go test ./... -v