From cbd98b5a1a1c696733a792aa6a2c8906bc14e1b2 Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Fri, 4 Sep 2020 13:38:17 -0500 Subject: [PATCH] update scripts/build.sh to run test only on v1 --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index fc838f2e5..0e9d172ad 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash echo "**** Checking if Wails passes unit tests ****" -if ! go test ./... +if ! go test ./lib/... ./runtime/... ./cmd/... then echo "" echo "ERROR: Unit tests failed!"