1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-05 09:17:52 +03:00
traefik/script/test-integration

25 lines
524 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export DEST=.
2018-01-24 11:14:02 +03:00
TESTFLAGS="${TESTFLAGS} -test.timeout=20m -check.v"
if [ -n "$VERBOSE" ]; then
TESTFLAGS="${TESTFLAGS} -v"
fi
cd integration
echo "Testing against…"
docker version
2017-10-30 12:02:03 +03:00
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