summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini14
1 files changed, 13 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5b8c32d7..cee58d3d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,7 +3,8 @@ envlist =
2.7,
3.3,
3.4,
- pypy
+ pypy,
+ pypy3
[testenv]
sitepackages = False
@@ -47,6 +48,17 @@ commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
pip install -U -r{toxinidir}/requirements/dev.txt
nosetests --with-coverage --cover-inclusive --cover-erase []
+[testenv:pypy3]
+basepython = pypy3
+deps = -r{toxinidir}/requirements/default.txt
+ -r{toxinidir}/requirements/test3.txt
+ -r{toxinidir}/requirements/test-ci3.txt
+setenv = C_DEBUG_TEST = 1
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
+ pip install -U -r{toxinidir}/requirements/dev.txt
+ nosetests -xsv --with-coverage --cover-inclusive --cover-erase []
+
+
[testenv:jython]
basepython = jython
recreate = True