aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
blob: a4491300b0d57f6be54ef0235347a0f25abe7ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
# Environment changes have to be manually synced with '.travis.yml'.
envlist = py27,py34,py35,pypy

[pytest]
addopts = -v --cov rsa --cov-report term-missing

[testenv]
commands=py.test []
deps=pyasn1 >=0.1.3
     coverage >=3.5
     PyTest
     pytest-xdist
     pytest-cov
     mock

[testenv:py35]
commands=py.test --doctest-modules rsa tests

[pep8]
max-line-length = 100