Browse code

Add Python 3.5 to tox.ini

Marius Gedminas authored on 2015/10/04 16:58:44
Showing 2 changed files
... ...
@@ -5,6 +5,7 @@ env:
5 5
   - TOXENV=py26
6 6
   - TOXENV=py27
7 7
   - TOXENV=py34
8
+  - TOXENV=py35
8 9
 addons:
9 10
   apt:
10 11
     sources:
... ...
@@ -1,5 +1,5 @@
1 1
 [tox]
2
-envlist = py26,py27,py34
2
+envlist = py26,py27,py34,py35
3 3
 
4 4
 [testenv]
5 5
 deps = -r{toxinidir}/test-requirements.txt
... ...
@@ -8,6 +8,6 @@ commands =
8 8
     python --version
9 9
     py26: python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' lib test contrib
10 10
     py27: python -m compileall -fq -x 'test|samples' lib test contrib
11
-    py34: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
11
+    py{34,35}: python -m compileall -fq -x 'lib/ansible/module_utils|lib/ansible/modules' lib test contrib
12 12
     # Unittests need lots of work to make code python3 compatible
13 13
     py{26,27}: make tests