Skip to content

Commit

Permalink
fix(ci): install libavformat-dev and libavdevice-dev on CI (#1567)
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravMaheshkar authored Jul 2, 2024
1 parent a6a3aa7 commit b720f85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test_minimal_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
cache-dependency-path: |
pyproject.toml
- name: Install Minimal Dependencies
run: pip install -e ."[minimal]"
run: |
sudo apt-get install libavformat-dev libavdevice-dev
pip install -e ."[minimal]"
- name: Install Package Without Dependencies
run: pip install --no-deps .
- name: Run Tests
Expand Down

0 comments on commit b720f85

Please sign in to comment.