
Change-Id: Id7cef7826092e191654da872ee1e11c4c6f50ddf Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
11 lines
195 B
Bash
Executable File
11 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
command -v tox > /dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
echo 'This script requires "tox" to run.'
|
|
echo 'You can install it with "pip install tox".'
|
|
exit 1;
|
|
fi
|
|
|
|
tox -evenv -- $@
|