summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini41
1 files changed, 5 insertions, 36 deletions
diff --git a/tox.ini b/tox.ini
index 70a8eba..da0e3c6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,21 +1,14 @@
[tox]
-envlist = py26,py27,py32,py33,pypy
+envlist = py26,py27,py33,py34,py35,pypy
[pytest]
-addopts = -n4 -v --cov rsa --cov-report term-missing # --doctest-modules
+addopts = -v --cov rsa --cov-report term-missing
+# --doctest-modules
[testenv]
+setenv =
+ PYTHONPATH = {toxinidir}:{toxinidir}/tests
commands=py.test []
-
-[testenv:py26]
-deps=pyasn1 >=0.1.3
- coverage >=3.5
- unittest2
- PyTest
- pytest-xdist
- pytest-cov
-
-[testenv:py27]
deps=pyasn1 >=0.1.3
coverage >=3.5
unittest2
@@ -23,27 +16,3 @@ deps=pyasn1 >=0.1.3
pytest-xdist
pytest-cov
-[testenv:py32]
-deps=pyasn1 >=0.1.3
- coverage >= 3.5
- unittest2py3k
- PyTest
- pytest-xdist
- pytest-cov
-
-[testenv:py33]
-deps=pyasn1 >=0.1.3
- coverage >= 3.5
- unittest2py3k
- PyTest
- pytest-xdist
- pytest-cov
-
-[testenv:pypy]
-deps=pyasn1 >=0.1.3
- coverage >= 3.5
- unittest2
- PyTest
- pytest-xdist
- pytest-cov
-