mirror of
https://github.com/containous/traefik.git
synced 2025-03-16 06:50:13 +03:00
11 lines
183 B
Bash
Executable File
11 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export DEST=.
|
|
|
|
TESTFLAGS="$TESTFLAGS -test.timeout=30m -check.v"
|
|
|
|
cd integration
|
|
go test $TESTFLAGS
|
|
|