Run tests on pypy and pypy3

This commit is contained in:
Roman Mogilatov 2015-03-26 16:56:49 +02:00
parent 76d567e376
commit 8d896e7272
2 changed files with 13 additions and 1 deletions

View File

@ -13,3 +13,5 @@ env:
- TOXENV=py32
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pypy3

12
tox.ini
View File

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