From 3e40a5159e1f6a4d365fa48c71ca190537befe77 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 21 Dec 2025 20:45:55 +0300 Subject: [PATCH] fix: Add pytest-asyncio to requirements.txt for CI The CI workflow uses requirements.txt for dependencies, so pytest-asyncio must be added there as well as pyproject.toml. This fixes the ModuleNotFoundError for mcp.types by ensuring all test dependencies are installed in the CI environment. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index c6e9ced..36f5461 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,6 +26,7 @@ PyMuPDF==1.24.14 Pillow==11.0.0 pytesseract==0.3.13 pytest==8.4.2 +pytest-asyncio==0.24.0 pytest-cov==7.0.0 python-dotenv==1.1.1 python-multipart==0.0.20