From 1b5ac3d2b62239fc81b88e07c590168f2a0bf919 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 fc838f2e..0e9d172a 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!"