Skip to content

Commit 9dfc8f6

Browse files
jeremymanningclaude
andcommitted
Add ffmpeg and torch to CI for Whisper speech tests
- Install ffmpeg via apt-get for audio processing - Install CPU-only torch for Whisper model inference - Install openai-whisper explicitly before package 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 6e3453f commit 9dfc8f6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,17 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25+
- name: Install system dependencies
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y ffmpeg
29+
2530
- name: Install dependencies
2631
run: |
2732
python -m pip install --upgrade pip
2833
pip install pytest pytest-cov
34+
pip install torch --index-url https://download.pytorch.org/whl/cpu
35+
pip install openai-whisper
2936
pip install -e .
3037
3138
- name: Run tests

0 commit comments

Comments
 (0)