mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-19 05:13:46 +00:00
Use new Python setup approach for scheduled tests. (#9626)
Using the same new unified Python setup as the regular tests and the lint job, as set up in #9625.
This commit is contained in:
parent
83986ea98a
commit
c06f34fa35
11
.github/workflows/scheduled_test.yml
vendored
11
.github/workflows/scheduled_test.yml
vendored
@ -25,18 +25,25 @@ jobs:
|
|||||||
name: Python ${{ matrix.python-version }}
|
name: Python ${{ matrix.python-version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: "./.github/actions/poetry_setup"
|
uses: "./.github/actions/poetry_setup"
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
poetry-version: ${{ env.POETRY_VERSION }}
|
poetry-version: ${{ env.POETRY_VERSION }}
|
||||||
working-directory: libs/langchain
|
working-directory: libs/langchain
|
||||||
install-command: |
|
cache-key: scheduled
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
working-directory: libs/langchain
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
echo "Running scheduled tests, installing dependencies with poetry..."
|
echo "Running scheduled tests, installing dependencies with poetry..."
|
||||||
poetry install --with=test_integration
|
poetry install --with=test_integration
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
|
shell: bash
|
||||||
env:
|
env:
|
||||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||||
run: |
|
run: |
|
||||||
make scheduled_tests
|
make scheduled_tests
|
||||||
shell: bash
|
|
||||||
|
Loading…
Reference in New Issue
Block a user