Skip to content

Commit

Permalink
fixup cyclic dep
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Feb 15, 2024
1 parent 08c75ab commit 42c26e8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 700 deletions.
4 changes: 3 additions & 1 deletion .github/actions/python-integration-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ runs:
working-directory: python

- name: Install dependencies
run: poetry install --with dev
run: |
poetry install --with dev
pip install -U langchain
shell: bash
working-directory: python

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
- name: Install poetry
run: pipx install poetry==1.4.2
- name: Install dependencies
run: poetry install --with dev
run: |
poetry install --with dev
pip install -U langchain
- name: Run Python integration tests
uses: ./.github/actions/python-integration-tests
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:
- name: Install poetry
run: pipx install poetry==$POETRY_VERSION
- name: Install dependencies
run: poetry install --with dev,lint
run: |
poetry install --with dev,lint
pip install -U langchain
- name: Analysing the code with our lint
run: make lint

Expand Down
Loading

0 comments on commit 42c26e8

Please sign in to comment.