Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Feb 5, 2024
1 parent 2b98935 commit 739bffb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.7
- uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
with:
ffmpeg-version: release
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
Expand Down
6 changes: 3 additions & 3 deletions tests/test_history.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from pydoc import cli
import warnings
import pytest
from .utils import IN_GITHUB


def test_history():
Expand All @@ -25,7 +24,8 @@ def test_history_item_delete():
# Random text
text = f"Test {randint(0, 1000)}"
audio = generate(text=text) # Generate a history item to delete
play(audio)
if IN_GITHUB:
play(audio)
time.sleep(1)

client = ElevenLabs()
Expand Down

0 comments on commit 739bffb

Please sign in to comment.