1[tox]
2# Environment changes have to be manually synced with '.travis.yml'.
3envlist = py35,py36,p37,p38,p39
4
5[pytest]
6addopts = -v --cov rsa --cov-report term-missing
7
8[testenv]
9deps = pipenv
10commands =
11    pipenv install --dev --deploy
12    pipenv run py.test tests/
13
14[testenv:py37]
15whitelist_externals = pipenv
16commands=
17    pipenv install -v
18    pipenv run py.test --doctest-modules rsa tests/
19