mirror of
https://github.com/containous/traefik.git
synced 2024-12-25 23:21:40 +03:00
25 lines
524 B
Bash
Executable File
25 lines
524 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export DEST=.
|
|
|
|
TESTFLAGS="${TESTFLAGS} -test.timeout=20m -check.v"
|
|
|
|
if [ -n "$VERBOSE" ]; then
|
|
TESTFLAGS="${TESTFLAGS} -v"
|
|
fi
|
|
|
|
cd integration
|
|
echo "Testing against…"
|
|
docker version
|
|
|
|
if [ -n "$TEST_CONTAINER" ]; then
|
|
echo "Testing from container…"
|
|
CGO_ENABLED=0 go test -integration -container $TESTFLAGS
|
|
fi
|
|
|
|
if [ -n "$TEST_HOST" ]; then
|
|
echo "Testing from host…"
|
|
CGO_ENABLED=0 go test -integration -host $TESTFLAGS
|
|
fi |