goabonga's picture
feat: add speaker recognition API with SpeechBrain ECAPA-TDNN
7323d5e unverified
raw
history blame contribute delete
173 Bytes
import pytest
from fastapi.testclient import TestClient
from app import app
@pytest.fixture(scope="session")
def client():
with TestClient(app) as c:
yield c