1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
[tool:pytest]
addopts = -q -n auto --strict-markers --no-flaky-report -rfEX --failed-first
python_classes = *Test
markers =
expensive: too slow to run during "make smoke"
filterwarnings =
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning
ignore:distutils Version classes are deprecated:DeprecationWarning
ignore:The distutils package is deprecated and slated for removal in Python 3.12:DeprecationWarning
xfail_strict = true
balanced_clumps =
VirtualenvTest
CompareTest
GetZipBytesTest
[pep8]
ignore = E265,E266,E123,E133,E226,E241,E242,E301,E401
max-line-length = 100
[metadata]
license_files = LICENSE.txt
[egg_info]
tag_build =
tag_date = 0
|