Skip to content

Enhance video editing workflow and improve GL preview stability #33

Enhance video editing workflow and improve GL preview stability

Enhance video editing workflow and improve GL preview stability #33

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
pyproject.toml
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
libegl1 libgl1 libxkbcommon0 libpulse0
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run tests
env:
QT_QPA_PLATFORM: offscreen
NUMBA_DISABLE_JIT: "1"
run: |
python -m pytest tests/ --tb=short -v