summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authordongwenjuan <dong.wenjuan@zte.com.cn>2017-07-21 15:20:54 +0800
committerdongwenjuan <dong.wenjuan@zte.com.cn>2017-07-26 17:31:12 +0800
commitcbb58ee4050a201c0125b0b0b1a7c8f162925849 (patch)
tree5a62df7b74a761719004e50880cfd35e0291a8a5 /tox.ini
parent41fc677e7f6349d28ec938fe6ac9ff03e99894f1 (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 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 2 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 2f74083f..e75a3741 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.3.1
-envlist = verify
+envlist = py34
skipsdist = True
[testenv]
@@ -20,7 +20,6 @@ passenv =
PROFILER_TYPE
PYTHON_ENABLE
CI_DEBUG
-
-[testenv:verify]
changedir = {toxinidir}/tests
commands = python main.py
+