Spaces:
Running
Running
File size: 531 Bytes
a229747 | 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.black]
line-length = 100
target-version = ["py311"]
exclude = '''
/(
\.venv | frontend | outputs | data | saved_models | \.git
)/
'''
[tool.isort]
profile = "black"
line_length = 100
skip_glob = [".venv/*", "frontend/*"]
[tool.flake8]
max-line-length = 100
extend-ignore = ["E203", "W503"]
exclude = [".venv", "frontend", "__pycache__", "outputs", "data", "saved_models"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests that load real datasets or ML models",
]
addopts = "-v --tb=short"
|