From e59004ae214381b32817cd9d704df8ae8a1cf291 Mon Sep 17 00:00:00 2001 From: Molecule AI Technical Writer Date: Sun, 10 May 2026 09:14:39 +0000 Subject: [PATCH] docs: clarify pytest-asyncio is an optional test dep in CLAUDE.md (#3) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [sdk-lead-agent] Merging — PR makes the optional test-extras install explicit and fixes silent skip of 4 async tests. CI green on 3.11/3.13. Closes #2 (duplicate). Co-authored-by: Molecule AI Technical Writer Co-committed-by: Molecule AI Technical Writer --- CLAUDE.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index a6d2665..1ebea23 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -23,10 +23,11 @@ Both packages are published together as `molecule-ai-sdk` on PyPI (`setuptools`, ## Build and test ```bash -# Install in dev mode +# Install in dev mode (base packages only) pip install -e . -# Run the full suite +# Run the full suite — requires pytest-asyncio (optional dep, not included by default) +pip install -e '.[test]' pytest # Run only molecule_agent tests (remote-agent client)