From 8cf2128b40195634c4024e3c797eceaaa4da19bc Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Sat, 13 Sep 2025 12:28:04 -0400 Subject: [PATCH] chore(tests): always show slowest tests (#3431) # What does this PR do? help developers identify slow tests by always passing --duration to pytest ## Test Plan n/a --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 72c4f6f9e..ce95b758f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -354,6 +354,7 @@ warn_required_dynamic_aliases = true classmethod-decorators = ["classmethod", "pydantic.field_validator"] [tool.pytest.ini_options] +addopts = ["--durations=10"] asyncio_mode = "auto" markers = [ "allow_network: Allow network access for specific unit tests",