* Automatically download converted models from the Hugging Face Hub * Remove unused import * Remove non needed requirements in dev mode * Remove extra index URL when pip install in CI * Allow downloading to a specific directory * Update docstring * Add argument to disable the progess bars * Fix typo in docstring
14 lines
223 B
Python
14 lines
223 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def data_dir():
|
|
return os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
|
|
|
|
|
|
@pytest.fixture
|
|
def jfk_path(data_dir):
|
|
return os.path.join(data_dir, "jfk.flac")
|