mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 10:57:07 +00:00
17 lines
463 B
INI
17 lines
463 B
INI
# tox.ini
|
|
|
|
[tox]
|
|
envlist = py{37}-spawn_pipe
|
|
|
|
[testenv]
|
|
description = Unit tests
|
|
setenv =
|
|
WEXPECT_LOGGER_LEVEL = SPAM
|
|
spawn_pipe: WEXPECT_SPAWN_CLASS=SpawnPipe
|
|
legacy_wexpect: WEXPECT_SPAWN_CLASS=legacy_wexpect
|
|
commands =
|
|
pip install .[test]
|
|
coverage run -m unittest tests.test_echo.EchoTestCase.testPath tests.test_expect.ExpectTestCase.test_before_after
|
|
coverage report --omit tests/*
|
|
coverage xml --omit tests/*
|