Fix issue with breaking checkpoint manager #681
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
run_tests: | |
name: Run Tests | |
runs-on: openpi-verylarge | |
env: | |
GIT_LFS_SKIP_SMUDGE: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install FFmpeg dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ffmpeg libavcodec-dev libavformat-dev libavutil-dev | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Set up Python | |
run: uv python install | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Run tests | |
run: uv run pytest --strict-markers -m "not manual" |