File: tox.ini

package info (click to toggle)
python-mypy-extensions 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92 kB
  • sloc: python: 294; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 470 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]
minversion = 4.4.4
skip_missing_interpreters = true
envlist = py38, py39, py310, py311, py312, py313

[testenv]
description = run the test driver with {basepython}
commands = python -We -m unittest discover tests

[testenv:lint]
description = check the code style
basepython = python3
deps = flake8
commands = flake8 -j0 {posargs}

[flake8]
max-line-length = 99
ignore =
  # multiple statements on one line (colon) (we use this for classes with empty body)
  E701