wexpect-venv/tox.ini

13 lines
213 B
INI
Raw Normal View History

2019-09-04 09:51:09 +00:00
# tox.ini
[tox]
envlist = py{37}
[testenv]
description = Unit tests
commands =
pip install .[test]
coverage run -m unittest
coverage report --omit tests/*
coverage xml --omit tests/*