Skip to content

[feat]: Add tests for FastVideo #5

[feat]: Add tests for FastVideo

[feat]: Add tests for FastVideo #5

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12' # or any version you need
- name: Install dependencies
run: |
pip install --upgrade pip
pip install packaging ninja && pip install flash-attn==2.7.0.post2 --no-build-isolation
pip install -e .
pip install pytest
- name: Run Pytest
run: |
pytest