diff options
author | Marius Gedminas <marius@gedmin.as> | 2015-10-04 10:58:44 +0300 |
---|---|---|
committer | Marius Gedminas <marius@gedmin.as> | 2015-10-04 10:59:19 +0300 |
commit | f1f3bc9e50db7833faaefe49ccd0f224ac64af03 (patch) | |
tree | 2b9abe60e7dfa4c005e8176190bb278adbe8ac9a /tox.ini | |
parent | e9b114a39b67ade4fbc4a1b928a759aa389657b8 (diff) | |
download | ansible-f1f3bc9e50db7833faaefe49ccd0f224ac64af03.tar.gz |
Add Python 3.5 to tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,py34 +envlist = py26,py27,py34,py35 [testenv] deps = -r{toxinidir}/test-requirements.txt @@ -8,6 +8,6 @@ commands = python --version py26: python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib py27: python -m compileall -fq -x 'test|samples' lib test contrib - py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib + py{34,35}: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib # Unittests need lots of work to make code python3 compatible py{26,27}: make tests |