e522446909
Co-authored-by: Julien Salleyron <julien.salleyron@gmail.com>
11 lines
210 B
Bash
Executable file
11 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[*]}
|