1
0
Fork 0
litecli/tox.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
249 B
INI
Raw Permalink Normal View History

[tox]
envlist = py,style
[testenv]
deps = uv
commands = uv pip install -e .[dev]
coverage run -m pytest -v tests
coverage report -m
[testenv:style]
skip_install = true
deps = ruff
commands = ruff check --fix
ruff format