test suite: minor fixes

This commit is contained in:
The MMGen Project 2025-03-15 18:24:52 +00:00
commit 915473cc2d
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2

View file

@ -6,6 +6,14 @@ requires = [
]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 106
indent-width = 4
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
[tool.ruff.lint]
ignore = [
"E401", # multiple imports per line
@ -125,4 +133,5 @@ ignored-classes = [ # ignored for no-member, otherwise checked
"Opts",
"Help",
"FFI_override",
"RPC",
]