Skip to content

Commit 3222651

Browse files
committed
Removed viz logic based on env.WORKDIR. Instead, adding extra viz to just typing of langchain-mongodb
1 parent 11535d0 commit 3222651

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/_lint.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,7 @@ jobs:
4646

4747
- name: Install dependencies
4848
working-directory: ${{ inputs.working-directory }}
49-
run: |
50-
if [[ "${{ env.WORKDIR }}" == *"langchain-mongodb"* ]]; then
51-
uv sync --frozen --extra viz
52-
else
53-
just install
54-
fi
49+
run: just install
5550

5651
- name: Get .mypy_cache to speed up mypy
5752
uses: actions/cache@v4

libs/langchain-mongodb/justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ lint:
3333

3434
[group('lint')]
3535
typing:
36-
uv run mypy --install-types --non-interactive .
36+
uv run --extra viz mypy --install-types --non-interactive .
3737

3838
[group('lint')]
3939
codespell:

0 commit comments

Comments
 (0)