File: tox.ini

package info (click to toggle)
python-pythonjsonlogger 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: python: 1,001; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tox]
requires = tox>=3,tox-uv
envlist = py{38,39,310,311,312,313}, pypy{38,39,310}

[testenv]
description = run unit tests
extras = dev
commands =
    pytest tests

[testenv:format]
description = run formatters
extras = dev
commands =
    black src tests

[testenv:lint]
description = run linters
extras = dev
commands =
    validate-pyproject pyproject.toml
    black --check --diff src tests
    pylint src
    mypy src tests