1
0
mirror of https://github.com/rancher/os.git synced 2025-06-23 21:47:03 +00:00
os/scripts/integration-test
2016-06-28 21:41:40 -07:00

18 lines
266 B
Bash
Executable File

#!/bin/bash
# help: Run Python based integration tests
set -e
if [ "$INTEGRATION_TESTS" = 0 ]; then
exit 0
fi
source $(dirname $0)/version
cd $(dirname $0)/../tests/integration
if [ ! -e ../../dist/artifacts/initrd ]; then
../../scripts/dev
fi
tox "$@"