Add Agno integration tests to CI workflow

This commit is contained in:
chopratejas 2026-01-16 16:11:02 -08:00
parent f1e7b628c4
commit 1f806cef4c

View file

@ -82,6 +82,25 @@ jobs:
run: |
pytest tests/test_relevance.py -v
test-agno:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install with agno extras
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,agno]"
- name: Run agno tests
run: |
pytest tests/test_integrations/agno/ -v
build:
runs-on: ubuntu-latest
steps: