From 8d896e727200fa1eafc980145185ee652bd2a4eb Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Thu, 26 Mar 2015 16:56:49 +0200 Subject: [PATCH] Run tests on pypy and pypy3 --- .travis.yml | 2 ++ tox.ini | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 94182c38..21be6868 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,3 +13,5 @@ env: - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 + - TOXENV=pypy + - TOXENV=pypy3 diff --git a/tox.ini b/tox.ini index b41aaf7e..2dff08c0 100644 --- a/tox.ini +++ b/tox.ini @@ -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 []