1[tox] 2envlist = py26,py27,py32,py33,pypy 3 4[pytest] 5addopts = -n4 -v --cov rsa --cov-report term-missing # --doctest-modules 6 7[testenv] 8commands=py.test [] 9 10[testenv:py26] 11deps=pyasn1 >=0.1.3 12 coverage >=3.5 13 unittest2 14 PyTest 15 pytest-xdist 16 pytest-cov 17 18[testenv:py27] 19deps=pyasn1 >=0.1.3 20 coverage >=3.5 21 unittest2 22 PyTest 23 pytest-xdist 24 pytest-cov 25 26[testenv:py32] 27deps=pyasn1 >=0.1.3 28 coverage >= 3.5 29 unittest2py3k 30 PyTest 31 pytest-xdist 32 pytest-cov 33 34[testenv:py33] 35deps=pyasn1 >=0.1.3 36 coverage >= 3.5 37 unittest2py3k 38 PyTest 39 pytest-xdist 40 pytest-cov 41 42[testenv:pypy] 43deps=pyasn1 >=0.1.3 44 coverage >= 3.5 45 unittest2 46 PyTest 47 pytest-xdist 48 pytest-cov 49 50