Adding py 33, 34 to tox and travis

This commit is contained in:
Roman Mogilatov 2015-03-26 01:15:41 +02:00
parent 946b1a240c
commit 233dedbcff
2 changed files with 13 additions and 1 deletions

View File

@ -11,3 +11,5 @@ env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34

12
tox.ini
View File

@ -1,6 +1,6 @@
[tox]
envlist=
dev, coveralls, pylint, flake8, pep257, py26, py27, py32
dev, coveralls, pylint, flake8, pep257, py26, py27, py32, py33, py34
[testenv]
deps=
@ -62,3 +62,13 @@ commands=
basepython=python3.2
commands=
unit2 discover tests []
[testenv:py33]
basepython=python3.3
commands=
unit2 discover tests []
[testenv:py34]
basepython=python3.4
commands=
unit2 discover tests []