1[tox]
2# Environment changes have to be manually synced with '.travis.yml'.
3envlist = py27,py34,py35,py36,p37,pypy
4
5[pytest]
6addopts = -v --cov rsa --cov-report term-missing
7
8[testenv]
9deps = pipenv
10commands=
11    pipenv install --dev
12    pipenv run py.test tests
13
14[testenv:py36]
15commands=
16    pipenv install --dev --ignore-pipfile
17    pipenv run py.test --doctest-modules rsa tests
18
19[pep8]
20max-line-length = 100
21