File: tox.ini

package info (click to toggle)
litecli 1.17.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,436 kB
  • sloc: python: 5,281; makefile: 8
file content (20 lines) | stat: -rw-r--r-- 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
envlist = py,style,sqlean

[testenv]
deps = uv
commands = uv pip install -e .[dev]
        coverage run -m pytest -v tests
        coverage report -m

[testenv:sqlean]
deps = uv
commands = uv pip install -e .[dev,sqlean]
        coverage run -m pytest -v tests
        coverage report -m

[testenv:style]
skip_install = true
deps = ruff
commands = ruff check --fix
           ruff format