Skip to content

feat: Support cross-database evaluation with SQLite ground truth #631

feat: Support cross-database evaluation with SQLite ground truth

feat: Support cross-database evaluation with SQLite ground truth #631

Workflow file for this run

name: run-pytest
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: [self-hosted, bastion]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Generate Proto Files
run: uv run make proto
- name: Run tests
run: |
uv run --with pytest pytest evalbench/test -vv
env:
PYTHONPATH: ${{ github.workspace }}/evalbench:${{ github.workspace }}