git-lfs/script/test
Steve Streeting 51957f1305 Make script/test automatically tests all pkgs instead of needing a list
Also add +build tags to test cmd tools so they don't build by default,
only when explicitly told to (which they are already)
2016-05-17 14:43:05 +01:00

11 lines
253 B
Bash
Executable File

#!/usr/bin/env bash
#/ Usage: script/test # run all tests
#/ script/test <subdir> # run just a package's tests
script/fmt
if [ $# -gt 0 ]; then
GO15VENDOREXPERIMENT=0 go test "./$1"
else
GO15VENDOREXPERIMENT=0 go test ./...
fi