Skip to content

Refactor API: explicit params, strict JSON-RPC validation, fix bugs #12

Refactor API: explicit params, strict JSON-RPC validation, fix bugs

Refactor API: explicit params, strict JSON-RPC validation, fix bugs #12

Workflow file for this run

name: Integration Tests
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
integration:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install package and test dependencies
run: |
pip install -e .
pip install pytest
- name: Run integration tests
run: python -m pytest tests/test_integration.py -v -s -m integration