diff options
Diffstat (limited to 'pike/tox.ini')
-rw-r--r-- | pike/tox.ini | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pike/tox.ini b/pike/tox.ini index c5e9e5c0..d4f5d579 100644 --- a/pike/tox.ini +++ b/pike/tox.ini @@ -13,7 +13,7 @@ # limitations under the License. [tox] -envlist = py27,pep8,cov,pylint +envlist = py35,pep8,cov,pylint skipsdist = true [tox:jenkins] @@ -25,6 +25,11 @@ exclude = ./venv-tox,./.tox max-complexity = 27 [testenv] +basepython = + py35: python3.5 + pep8: python3.5 + cov: python3.5 + pylint: python3.5 setenv = PYTHONPATH = {toxinidir}/../share deps = @@ -36,7 +41,7 @@ commands = [testenv:pep8] deps=flake8 -commands=flake8 +commands=python3.5 -m flake8 [testenv:cov] commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*" |