10 lines
183 B
Bash
Executable file
10 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
|
|
|