mirror of
https://github.com/rancher/os.git
synced 2025-06-23 21:47:03 +00:00
12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
|
#!/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 "$@"
|