pyproject.toml•571 B
[tool.black]
line-length = 100
[tool.pytest.ini_options]
testpaths = ["."]
python_files = ["test_*.py", "*_test.py"]
python_functions = ["test_*"]
python_classes = ["Test*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"--disable-warnings",
"--color=yes"
]
markers = [
"unit: Unit tests (fast, no external dependencies)",
"integration: Integration tests (may require external services)",
"slow: Slow tests that take more time to run"
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning"
]