18 lines
290 B
INI
18 lines
290 B
INI
[tox]
|
|
envlist = py3.8,py3.9,py3.10,py3.11,pypy3
|
|
|
|
[testenv]
|
|
deps = -rrequirements-dev.txt
|
|
commands =
|
|
coverage erase
|
|
coverage run -m pytest {posargs:tests}
|
|
coverage report
|
|
|
|
[pep8]
|
|
ignore = E265,E501
|
|
max_line_length = 120
|
|
|
|
[flake8]
|
|
extend-ignore = E501, A003
|
|
max_line_length = 120
|