1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00
SpaceVim/bundle/python-imports.vim/tox.ini

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