make test -> make unit_test

This commit is contained in:
Mason Daugherty
2025-07-28 10:23:42 -04:00
parent 083a99b102
commit 0bbfdaf3d5
6 changed files with 11 additions and 11 deletions

View File

@@ -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

View File

@@ -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