robosats/pyproject.toml

15 lines
334 B
TOML
Raw Permalink Normal View History

[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
"*migrations/*",
"api/nick_generator/nick_generator.py",
]
[tool.coverage.run]
omit = [
# omit grpc proto from coverage reports
"api/lightning/*pb2*",
# omit test and mocks from coverage reports
"tests/*",
2023-11-13 17:40:47 +03:00
"manage.py",
]