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