mirror of https://github.com/hashicorp/consul
Frank Schroeder
8 years ago
committed by
Frank Schröder
4 changed files with 9 additions and 50 deletions
@ -1,24 +0,0 @@
|
||||
#!/usr/bin/env bash |
||||
set -e |
||||
|
||||
if [ -n "$TRAVIS" ]; then |
||||
# Install all packages - this will make running the suite faster |
||||
echo "--> Installing packages for faster tests" |
||||
go install -tags="${GOTAGS}" -a ./... |
||||
fi |
||||
|
||||
# If we are testing the API, build and install consul |
||||
if grep -q "/consul/api" <<< "${GOFILES}"; then |
||||
# Create a temp dir and clean it up on exit |
||||
TEMPDIR=`mktemp -d -t consul-test.XXX` |
||||
trap "rm -rf ${TEMPDIR}" EXIT HUP INT QUIT TERM |
||||
|
||||
# Build the Consul binary for the API tests |
||||
echo "--> Building consul" |
||||
go build -tags="${GOTAGS}" -o $TEMPDIR/consul |
||||
PATH="${TEMPDIR}:${PATH}" |
||||
fi |
||||
|
||||
# Run the tests |
||||
echo "--> Running tests" |
||||
go test -timeout=360s -tags="${GOTAGS}" ${GOFILES} ${TESTARGS} |
Loading…
Reference in new issue