mirror of
https://github.com/rancher/os.git
synced 2025-05-08 16:16:20 +00:00
22 lines
326 B
Bash
Executable File
22 lines
326 B
Bash
Executable File
#!/bin/bash
|
|
# help: Run integration tests
|
|
set -e
|
|
|
|
if [ "$INTEGRATION_TESTS" = 0 ]; then
|
|
exit 0
|
|
fi
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)/../tests
|
|
|
|
if [ ! -e "../dist/artifacts/$INITRD" ]; then
|
|
../scripts/dev
|
|
fi
|
|
|
|
if [ "$RUNTEST" != "" ]; then
|
|
RUNTEST="-check.f ${RUNTEST}"
|
|
fi
|
|
|
|
go test -timeout 9999m $RUNTEST
|