From 1f806cef4c837708e4484f5a050fd2b7738e2e16 Mon Sep 17 00:00:00 2001 From: chopratejas Date: Fri, 16 Jan 2026 16:11:02 -0800 Subject: [PATCH] Add Agno integration tests to CI workflow --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 843a55f98..06f86bd66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: