Files
FitTrack2/FitnessSync/backend/pyproject.toml
2025-12-23 06:09:34 -08:00

34 lines
513 B
TOML

[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.venv
| venv
| build
| dist
| __pycache__
)/
'''
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
[tool.flake8]
max-line-length = 88
extend-ignore = ['E203', 'W503']
exclude = [
".git",
"__pycache__",
"build",
"dist",
".venv"
]