2015-05-08 10:58:56 -04:00
|
|
|
# ignore errors:
|
|
|
|
# E12* are continuation line indention related
|
|
|
|
# E501 is line too long
|
|
|
|
# See http://pep8.readthedocs.org/en/latest/intro.html#id1
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
ignore=E124,E125,E127,E128,E501
|
|
|
|
# Exclude the build directory that distutils creates
|
|
|
|
exclude=build/*
|
|
|
|
max-line-length=120
|
2024-10-03 08:39:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
[tox]
|
|
|
|
# sync with /.github/workflows/fedora-tox.yml
|
|
|
|
envlist = py{36,37,311,312,313}
|
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
|
|
|
|
[testenv]
|
2024-10-03 16:13:42 +02:00
|
|
|
deps =
|
|
|
|
-rrequirements.txt
|
|
|
|
coverage
|
|
|
|
pytest
|
|
|
|
pytest-cov
|
|
|
|
commands =
|
|
|
|
python -m pytest -v {posargs} --cov-report term-missing --cov-branch --cov
|