mirror of
https://github.com/rancher/os.git
synced 2025-06-23 21:47:03 +00:00
18 lines
266 B
Bash
Executable File
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 "$@"
|