diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-07-21 15:20:54 +0800 |
---|---|---|
committer | dongwenjuan <dong.wenjuan@zte.com.cn> | 2017-07-26 17:31:12 +0800 |
commit | cbb58ee4050a201c0125b0b0b1a7c8f162925849 (patch) | |
tree | 5a62df7b74a761719004e50880cfd35e0291a8a5 /tests/run.sh | |
parent | 41fc677e7f6349d28ec938fe6ac9ff03e99894f1 (diff) |
fix some bugs for python verify jobs:
1.PYTHON_ENABLE=True does not work in bash
The python jobs does not run even we enabled them. The reason is that currently
JJB parse the parameter 'PYTHON_ENABLE' as 'True' which does not work in bash.
Fix it to compare with [Tt]rue.
2.Install tox if it is not installed
3.support only python3.4 in tox.ini
4.install python3-dev
Change-Id: I1a8ebad2fd06fe50ca4f739adb8d6d76caa2963b
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-x | tests/run.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh index fda1e753..713e494b 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -480,7 +480,14 @@ cleanup() { # Main process -if $PYTHON_ENABLE; then +if [[ $PYTHON_ENABLE == [Tt]rue ]]; then + which tox || sudo pip install tox + if [ -f /usr/bin/apt-get ]; then + sudo apt-get install -y python3-dev + elif [ -f /usr/bin/yum ] ; then + sudo yum install -y python3-devel + fi + cd $TOP_DIR echo "executing tox..." tox |