20 lines
366 B
Bash
Executable file
20 lines
366 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export DEST=.
|
|
|
|
TESTFLAGS+=("-test.timeout=20m" -check.v)
|
|
|
|
if [ -n "${VERBOSE}" ]; then
|
|
TESTFLAGS+=(-v)
|
|
elif [ -n "${VERBOSE_INTEGRATION}" ]; then
|
|
TESTFLAGS+=(-v)
|
|
fi
|
|
|
|
cd integration
|
|
echo "Testing against..."
|
|
docker version
|
|
|
|
# shellcheck disable=SC2086
|
|
# shellcheck disable=SC2048
|
|
CGO_ENABLED=0 go test -integration ${TESTFLAGS[*]}
|