1
0
Fork 0
litecli/tox.ini
Daniel Baumann 47976d33df
Merging upstream version 1.12.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 17:55:14 +01:00

14 lines
249 B
INI

[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