Skip to content

Integration tests

Integration tests #52

Workflow file for this run

# Integration tests (real Hey.Café API)
name: Integration tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
- cron: "0 6 * * *" # Daily 06:00 UTC
workflow_dispatch:
jobs:
integration:
name: Integration tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run integration tests
env:
HEYCAFE_BASE_URL: "https://endpoint.hey.cafe"
run: pytest tests/ -m integration -v --tb=short