mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
11 lines
254 B
INI
11 lines
254 B
INI
[tox]
|
|
envlist = py{27,35,36,37,38}{,-cov}
|
|
|
|
[testenv]
|
|
deps = -rtests/requirements.txt
|
|
passenv = DEBUGPY_LOG_DIR TRAVIS
|
|
setenv =
|
|
DEBUGPY_TEST=1
|
|
commands =
|
|
!cov: pytest {posargs}
|
|
cov: pytest --cov --cov-append --cov-config=.coveragerc {posargs}
|