Skip to content

add langchain standard integration test #18

add langchain standard integration test

add langchain standard integration test #18

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
concurrency:
group: pr-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: [self-hosted, linux, no-gpu]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -e .
python -m pip install pytest pre-commit
python -m pip install langchain-tests
- name: Lint and format
run: pre-commit run --all-files --show-diff-on-failure
- name: Run unit tests
run: python -m pytest -q -m "not integration"