Skip to content

Commit

Permalink
Install tgt pip package during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
naglis committed Nov 12, 2024
1 parent 8d78eb1 commit 8ffd598
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
sudo apt-get update
sudo apt-get install -y ffmpeg espeak
python -m pip install --upgrade pip
pip install -r requirements.txt
# FIXME: `tgt` is temporarily installed since tests break without it.
# Consider adding it as a hard dependency or ignore(skip) in tests if it is not installed intead of failing.
pip install -r requirements.txt tgt
- name: Tests
run: |
python -m unittest discover -v

0 comments on commit 8ffd598

Please sign in to comment.