diff options
-rwxr-xr-x | scripts/run.sh | 4 |
1 files 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/ |