23 lines
586 B
Bash
Executable File
23 lines
586 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# test suite...
|
|
echo running test.sh
|
|
|
|
# ensure there is no trailing whitespace or other whitespace errors
|
|
git diff-tree --check $(git hash-object -t tree /dev/null) HEAD
|
|
|
|
# ensure entries to authors file are sorted
|
|
start=$(($(grep -n '^[[:space:]]*$' AUTHORS | awk -F ':' '{print $1}' | head -1) + 1))
|
|
diff <(tail -n +$start AUTHORS | sort) <(tail -n +$start AUTHORS)
|
|
|
|
./test/test-gofmt.sh
|
|
./test/test-yamlfmt.sh
|
|
go test
|
|
#go test ./pgraph
|
|
|
|
# do these longer tests only when running on ci
|
|
if env | grep -q '^TRAVIS=true$'; then
|
|
go test -race
|
|
#go test -race ./pgraph
|
|
fi
|