mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 03:00:06 +08:00
19 lines
281 B
INI
Vendored
19 lines
281 B
INI
Vendored
[tox]
|
|
envlist = py37,py38,py39,py310,py311
|
|
skipsdist = true
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
commands =
|
|
pytest {posargs}
|
|
|
|
[testenv:coverage]
|
|
basepython = python3
|
|
deps =
|
|
pytest
|
|
coverage
|
|
commands =
|
|
coverage run -m pytest {posargs}
|
|
coverage report -m --fail-under=100
|