summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: b2bf26674352494c92d586788797119bd5dc919c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[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