Skip to content

E2E Tests

E2E Tests #206

Workflow file for this run

name: E2E Tests
on:
push:
branches: [ "main" ]
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-interaction --all-extras
- name: Run E2E Tests
env:
GENAI_API: ${{ vars.GENAI_API }}
GENAI_KEY: ${{ secrets.GENAI_KEY }}
run: poetry run pytest -m 'e2e' --no-cov