From 53c8a0a80677d835989e5a53f00ba9a2e88e3084 Mon Sep 17 00:00:00 2001 From: Michael Landis Date: Mon, 18 Dec 2023 17:43:56 -0800 Subject: [PATCH] docs: fix typo in contributing re installing integration test deps (#14861) **Description** The contributing docs lists a poetry command to install community for dev work that includes a poetry group called `integration_tests`. This is a mistake: the poetry group for integration tests is called `test_integration`, not `integration_tests`. See here: https://github.com/langchain-ai/langchain/blob/master/libs/community/pyproject.toml#L119 --- docs/docs/contributing/code.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/contributing/code.mdx b/docs/docs/contributing/code.mdx index ce81d8e0b99f4..279bdc05303cc 100644 --- a/docs/docs/contributing/code.mdx +++ b/docs/docs/contributing/code.mdx @@ -64,7 +64,7 @@ cd libs/community Install langchain-community development requirements (for running langchain, running examples, linting, formatting, tests, and coverage): ```bash -poetry install --with lint,typing,test,integration_tests +poetry install --with lint,typing,test,test_integration ``` Then verify dependency installation: