1
0
mirror of https://github.com/rancher/os.git synced 2025-06-18 11:17:25 +00:00
os/scripts/integration-test

14 lines
213 B
Plaintext
Raw Normal View History

2016-05-23 06:11:26 +00:00
#!/bin/bash
# help: Run Python based integration tests
set -e
2016-06-13 23:33:07 +00:00
source $(dirname $0)/version
2016-05-23 06:11:26 +00:00
cd $(dirname $0)/../tests/integration
if [ ! -e ../../dist/artifacts/initrd ]; then
../../scripts/dev
fi
tox "$@"