kiwi-el8/setup.cfg
Marcus Schäfer 94de1336d8
Support custom partitions
In addition to the volume volume management settings also
allow to setup low level table entries like in the following
example:

<partitions>
    <partition name="var" size="100" mountpoint="/var" filesystem="ext3"/>
</partitions>
2021-11-03 13:31:17 +01:00

32 lines
672 B
INI

[sdist]
# Used by setup.py sdist
formats=gztar
[tool:pytest]
norecursedirs = .git build .tox/ .tmp/
addopts = --ignore=.tmp/ --ignore=.git/ --ignore=.tox/ -p no:warnings
testpaths = test/unit
[flake8]
# For error codes, see
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
#
# This file is generated automatically:
exclude=xml_parse.py
# we allow long lines (E501)
# we ignore warnings about quoting of escape sequences (W605)
ignore = E501, W605
# we allow a custom complexity level
max-complexity = 19
[doc8]
max-line-length = 90
verbose = 1
[mypy]
ignore_missing_imports = True
[mypy-kiwi.xml_parse.*]
# skip auto generated code
ignore_errors = True