Skip to content

Add ColVision models ColQwen2, ColQwen2.5, ColQwen3, and ColGemma3 #739

Add ColVision models ColQwen2, ColQwen2.5, ColQwen3, and ColGemma3

Add ColVision models ColQwen2, ColQwen2.5, ColQwen3, and ColGemma3 #739

Workflow file for this run

name: 🧪 PyTest unit tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
config:
- name: process
extras: "process,index,rag,api,cpu,dev,websearch"
pytest-args: "--ignore=tests/test_colpali.py"
- name: colpali
extras: "colpali,cpu,dev"
pytest-args: "tests/test_colpali.py"
name: test (${{ matrix.config.name }}, py${{ matrix.python-version }})
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install uv and create venv
run: |
pipx install uv
uv venv .venv
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (using uv)
run: |
source .venv/bin/activate
uv pip install -e ".[${{ matrix.config.extras }}]"
- name: Show installed cohere and langchain-cohere versions
run: |
source .venv/bin/activate
uv pip show cohere || echo "Cohere not installed"
uv pip show langchain-cohere || echo "Langchain-cohere not installed"
- name: Run tests
run: |
source .venv/bin/activate
pytest ${{ matrix.config.pytest-args }}