diff options
author | Sybren A. Stüvel <sybren@stuvel.eu> | 2016-01-13 10:04:42 +0100 |
---|---|---|
committer | Sybren A. Stüvel <sybren@stuvel.eu> | 2016-01-13 10:04:42 +0100 |
commit | f0cbd38624251d6f83d20e124feca0c9acdd605b (patch) | |
tree | b27dee81715248f24e229ffcae1a292d373059fa | |
parent | d53eafeb2a1adb13db2c44dec96e71dfc2ff45f6 (diff) | |
download | rsa-git-f0cbd38624251d6f83d20e124feca0c9acdd605b.tar.gz |
Simplified Tox configuration and dropped Python 3.2 support.
The coverage package uses a u'' prefix, which was reintroduced in 3.3.
-rw-r--r-- | tox.ini | 41 |
1 files changed, 5 insertions, 36 deletions
@@ -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 - |