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