wexpect-venv/tox.ini

17 lines
463 B
INI
Raw Normal View History

2019-09-04 09:51:09 +00:00
# tox.ini
[tox]
envlist = py{37}-spawn_pipe
2019-09-04 09:51:09 +00:00
[testenv]
description = Unit tests
setenv =
2020-02-01 20:45:58 +00:00
WEXPECT_LOGGER_LEVEL = SPAM
spawn_pipe: WEXPECT_SPAWN_CLASS=SpawnPipe
legacy_wexpect: WEXPECT_SPAWN_CLASS=legacy_wexpect
2019-09-04 09:51:09 +00:00
commands =
pip install .[test]
2020-02-01 20:34:34 +00:00
coverage run -m unittest tests.test_echo.EchoTestCase.testPath tests.test_expect.ExpectTestCase.test_before_after
2019-09-04 09:51:09 +00:00
coverage report --omit tests/*
coverage xml --omit tests/*