mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-26 22:05:29 +00:00
make test
-> make unit_test
This commit is contained in:
@@ -48,7 +48,7 @@ uv sync
|
||||
Then verify dependency installation:
|
||||
|
||||
```bash
|
||||
make test
|
||||
make unit_test
|
||||
```
|
||||
|
||||
## Testing
|
||||
@@ -61,7 +61,7 @@ If you add new logic, please add a unit test.
|
||||
To run unit tests:
|
||||
|
||||
```bash
|
||||
make test
|
||||
make unit_test
|
||||
```
|
||||
|
||||
There are also [integration tests and code-coverage](../testing.mdx) available.
|
||||
@@ -72,7 +72,7 @@ If you are only developing `langchain_core`, you can simply install the dependen
|
||||
|
||||
```bash
|
||||
cd libs/core
|
||||
make test
|
||||
make unit_test
|
||||
```
|
||||
|
||||
## Formatting and linting
|
||||
|
@@ -24,13 +24,13 @@ poetry install --with test
|
||||
To run unit tests:
|
||||
|
||||
```bash
|
||||
make test
|
||||
make unit_test
|
||||
```
|
||||
|
||||
To run a specific test:
|
||||
|
||||
```bash
|
||||
TEST_FILE=tests/unit_tests/test_imports.py make test
|
||||
TEST_FILE=tests/unit_tests/test_imports.py make unit_test
|
||||
```
|
||||
|
||||
## Integration tests
|
||||
|
Reference in New Issue
Block a user