Skip to content

Commit

Permalink
docs: fix typo in contributing re installing integration test deps (#…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
malandis authored and hinthornw committed Dec 19, 2023
1 parent 4d71efa commit 53c8a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/contributing/code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 53c8a0a

Please sign in to comment.