LBRY-Vault/tox.ini
SomberNight 6b9a83ae80
don't test with python 3.5
also, typing is no longer needed (part of stdlib from 3.5)
2018-09-11 21:10:47 +02:00

12 lines
222 B
INI

[tox]
envlist = py36
[testenv]
deps=
pytest
coverage
commands=
coverage run --source=electrum '--omit=electrum/gui/*,electrum/plugins/*,electrum/scripts/*,electrum/tests/*' -m py.test -v
coverage report
extras=
fast