From 2ebad9dcb37c1130407e4514150dd07c69f7f598 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 6 Mar 2024 16:57:51 +0000 Subject: Adds verbose flag to test commands --- scripts/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.sh b/scripts/run.sh index 9da6747..c83861a 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -11,8 +11,8 @@ then fi # Here is where we launch all the commands -[[ $1 == "test" ]] && go test ./datamaps -[[ $1 == "test-all" ]] && go test ./... +[[ $1 == "test" ]] && go test -v ./datamaps +[[ $1 == "test-all" ]] && go test -v ./... [[ $1 == "build" ]] && go build -o build/datamaps ./cmd/datamaps/main.go [[ $1 == "clean-config" ]] && rm -r ~/.config/datamaps/ [[ $1 == "dummy-import" ]] && go run ./cmd/datamaps/main.go import --returnname "Hunkers" --datamapname "Tonk 1" --xlsxpath datamaps/testdata/ -- cgit v1.2.3