mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 15:33:01 +00:00
12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export DEST=.
|
|
|
|
echo "Testing against..."
|
|
docker version
|
|
|
|
# shellcheck disable=SC2086
|
|
# shellcheck disable=SC2048
|
|
go test ./integration -test.timeout=20m -failfast -v ${TESTFLAGS[*]}
|