mirror of
https://github.com/rancher/os.git
synced 2025-08-28 11:12:59 +00:00
14 lines
194 B
Bash
Executable File
14 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
# help: Run integration tests
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)/../tests
|
|
|
|
if [ ! -e ../dist/artifacts/initrd ]; then
|
|
../scripts/dev
|
|
fi
|
|
|
|
go test -timeout 20m
|