14 lines
249 B
INI
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
|