nodepool/setup.cfg
James E. Blair fa9f239a2f Ignore F824
flake8 added F824 which requires vars marked global/nonlocal to be
assigned in scope.  We have some instances that violate that, but
it's not clear if the rule is a win.  While we decide on that,
ignore the error (possibly temporarily).

Change-Id: I2992c0afc39569a1aa2d998f55157b02ea69a40c
2025-04-10 07:37:55 -07:00

45 lines
1.1 KiB
INI

[metadata]
name = nodepool
summary = Node pool management for a distributed test infrastructure
description-file =
README.rst
author = Zuul Team
author-email = zuul-discuss@lists.zuul-ci.org
home-page = https://zuul-ci.org/
python-requires = >= 3.11
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.11
[pbr]
warnerrors = True
[entry_points]
console_scripts =
nodepool = nodepool.cmd.nodepoolcmd:main
nodepool-builder = nodepool.cmd.builder:main
nodepool-launcher = nodepool.cmd.launcher:main
[build_sphinx]
source-dir = doc/source
build-dir = doc/build
all_files = 1
warning-is-error = 1
[extras]
nodepool_base =
yappi
objgraph
python-logstash-async
[flake8]
# These are ignored intentionally in zuul projects;
# please don't submit patches that solely correct them or enable them.
ignore = E124,E125,E129,E402,E741,W503,W504,F824
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg