From 6ffc20efe1d8b9747fee2170002b3f5fe6e82fe6 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 8 Apr 2026 10:30:32 +0000 Subject: [PATCH] Add pytest-timeout to dev dependencies The integration CI job uses `--timeout=120` which requires the pytest-timeout package, but it was missing from the dev dependency group. https://claude.ai/code/session_017fVjWc5uFANtp2AkWmcDox --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b5940f1..b65b9d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,7 @@ dev = [ "pytest>=7.4", "pytest-asyncio>=0.23", "pytest-cov>=4.1", + "pytest-timeout>=2.2", "respx>=0.20", "ruff>=0.3", "mypy>=1.8",