mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 02:46:59 +00:00
12 lines
180 B
INI
12 lines
180 B
INI
|
# tox.ini
|
||
|
|
||
|
[tox]
|
||
|
envlist = py{37}
|
||
|
|
||
|
[testenv]
|
||
|
description = Unit tests
|
||
|
commands =
|
||
|
pip install .[test]
|
||
|
coverage run -m unittest
|
||
|
coverage report --omit tests/*
|