You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
[tox]
|
|
# Environment changes have to be manually synced with '.travis.yml'.
|
|
envlist = py35,py36,p37,p38,p39
|
|
|
|
[pytest]
|
|
addopts = -v --cov rsa --cov-report term-missing
|
|
|
|
[testenv]
|
|
deps = pipenv
|
|
commands =
|
|
pipenv install --dev --deploy
|
|
pipenv run py.test tests/
|
|
|
|
[testenv:py37]
|
|
whitelist_externals = pipenv
|
|
commands=
|
|
pipenv install -v
|
|
pipenv run py.test --doctest-modules rsa tests/
|