mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
15 lines
544 B
INI
15 lines
544 B
INI
[tox]
|
|
envlist = py{37,38,39,310,311,312}{,-cov}
|
|
|
|
[testenv]
|
|
deps =
|
|
-rtests/requirements.txt
|
|
py37{,-cov}: setuptools<66
|
|
passenv = DEBUGPY_LOG_DIR,DEBUGPY_TESTS_FULL
|
|
setenv =
|
|
DEBUGPY_TEST=1
|
|
commands =
|
|
py{37,38,39}-!cov: python -m pytest {posargs}
|
|
py{37,38,39}-cov: python -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
|
|
py{310,311,312}-!cov: python -Xfrozen_modules=off -m pytest {posargs}
|
|
py{310,311,312}-cov: python -Xfrozen_modules=off -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
|