feat(standard-tests): formatting (#32504)

Not touching `pyproject.toml` or chat model related items as to not
interfere with work in wip0.4 branch
This commit is contained in:
Mason Daugherty
2025-08-11 13:30:30 -04:00
committed by GitHub
parent 457ce9c4b0
commit e5d0a4e4d6
6 changed files with 44 additions and 42 deletions

View File

@@ -112,18 +112,6 @@ ignore = [
]
unfixable = ["B028"] # People should intentionally tune the stacklevel
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5"
markers = [
"requires: mark tests as requiring a specific library",
"asyncio: mark tests as requiring asyncio",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"
[tool.ruff.lint.pydocstyle]
convention = "google"
@@ -135,3 +123,15 @@ convention = "google"
"S101", # Tests need assertions
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
]
[tool.coverage.run]
omit = ["tests/*"]
[tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5"
markers = [
"requires: mark tests as requiring a specific library",
"asyncio: mark tests as requiring asyncio",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"