mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47:04 +00:00
14 lines
213 B
Bash
Executable File
14 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
# help: Run Python based integration tests
|
|
set -e
|
|
|
|
source $(dirname $0)/version
|
|
|
|
cd $(dirname $0)/../tests/integration
|
|
|
|
if [ ! -e ../../dist/artifacts/initrd ]; then
|
|
../../scripts/dev
|
|
fi
|
|
|
|
tox "$@"
|