65f81990a7
… instead of /bin/bash, to work better on more platforms. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
16 lines
316 B
Bash
Executable file
16 lines
316 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export DEST=.
|
|
|
|
TESTFLAGS="${TESTFLAGS} -test.timeout=9m -check.v"
|
|
|
|
if [ -n "$VERBOSE" ]; then
|
|
TESTFLAGS="${TESTFLAGS} -v"
|
|
fi
|
|
|
|
cd integration
|
|
echo "Testing against…"
|
|
docker version
|
|
CGO_ENABLED=0 go test $TESTFLAGS
|