test: update timeout

This commit is contained in:
Chidi Williams 2024-03-14 16:55:19 +00:00
parent cc028ff0ba
commit 7aec7a902a
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import os.path
test_audio_path = os.path.join(
os.path.dirname(__file__), "../testdata/whisper-french.mp3"
test_audio_path = os.path.abspath(
os.path.join(os.path.dirname(__file__), "../testdata/whisper-french.mp3")
)

View file

@ -41,4 +41,4 @@ class TestCLI:
def output_exists_at_output_directory():
assert any(file.endswith(".txt") for file in os.listdir(output_directory))
qtbot.wait_until(output_exists_at_output_directory, timeout=30_000)
qtbot.wait_until(output_exists_at_output_directory, timeout=60 * 1000)