git-lfs/script/test
2015-07-29 20:37:31 -06:00

11 lines
214 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
suite="./${1:-"lfs"}"
if [ $# -gt 0 ]; then
shift
fi
go test $suite "$@"