i2plib/tox.ini

19 lines
276 B
INI

[tox]
envlist = py35, py36, py37
[testenv]
deps =
coverage
commands =
coverage run -p --include=i2plib/* -m unittest
[testenv:codecov]
passenv = CI TRAVIS TRAVIS_*
deps = codecov
skip_install = true
commands =
coverage combine
coverage report
codecov