This commit is contained in:
Harrison Chase
2023-07-19 20:08:24 -07:00
parent 2ddbca8c7b
commit f5d62be724
2 changed files with 8 additions and 0 deletions

View File

@@ -37,6 +37,10 @@ jobs:
- name: Install dependencies
run: |
poetry install
- name: Install langchain editable
if: ${{ inputs.working-directory != 'langchain' }}
run: |
pip install -e ../
- name: Analysing the code with our lint
run: |
make lint

View File

@@ -47,6 +47,10 @@ jobs:
echo "Running extended tests, installing dependencies with poetry..."
poetry install -E extended_testing
fi
- name: Install langchain editable
if: ${{ inputs.working-directory != 'langchain' }}
run: |
pip install -e ../
- name: Run ${{matrix.test_type}} tests
run: |
if [ "${{ matrix.test_type }}" == "core" ]; then