voiceforge / backend /test_output.txt
lordofgaming
Initial VoiceForge deployment (clean)
673435a
��============================= test session starts =============================
platform win32 -- Python 3.13.11, pytest-9.0.0, pluggy-1.6.0 -- C:\Users\kumar\AppData\Local\Programs\Python\Python313\python.exe
cachedir: .pytest_cache
rootdir: C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend
plugins: anyio-4.11.0, Faker-38.2.0, asyncio-1.3.0, cov-7.0.0
asyncio: mode=Mode.STRICT, debug=False, asyncio_default_fixture_loop_scope=None, asyncio_default_test_loop_scope=function
collecting ... collected 7 items
tests/test_export.py::test_export_txt PASSED [ 14%]
tests/test_export.py::test_export_srt PASSED [ 28%]
tests/test_export.py::test_export_vtt PASSED [ 42%]
tests/test_export.py::test_export_pdf PASSED [ 57%]
tests/test_nlp.py::test_sentiment_analysis PASSED [ 71%]
tests/test_nlp.py::test_keywords_extraction PASSED [ 85%]
tests/test_nlp.py::test_summarization PASSED [100%]
============================== warnings summary ===============================
app\schemas\user.py:23
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\schemas\user.py:23: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.12/migration/
class UserResponse(BaseModel):
app\schemas\user.py:36
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\schemas\user.py:36: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.12/migration/
class UserPreferencesResponse(BaseModel):
app\schemas\stt.py:38
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\schemas\stt.py:38: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.12/migration/
class TranscriptionResponse(BaseModel):
app\schemas\transcript.py:29
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\schemas\transcript.py:29: PydanticDeprecatedSince20: Support for class-based `config` is deprecated, use ConfigDict instead. Deprecated in Pydantic V2.0 to be removed in V3.0. See Pydantic V2 Migration Guide at https://errors.pydantic.dev/2.12/migration/
class TranscriptResponse(BaseModel):
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:61: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", size=12)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:64: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", "B", 16)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:65: DeprecationWarning: The parameter "ln" is deprecated since v2.5.2. Instead of ln=True use new_x=XPos.LMARGIN, new_y=YPos.NEXT.
pdf.cell(0, 10, f"Transcript Report", ln=True, align='C')
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:69: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", "B", 10)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:76: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", size=11)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:87: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", "B", 12)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:88: DeprecationWarning: The parameter "ln" is deprecated since v2.5.2. Instead of ln=True use new_x=XPos.LMARGIN, new_y=YPos.NEXT.
pdf.cell(0, 10, "Analysis", ln=True)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:89: DeprecationWarning: Substituting font arial by core font helvetica - This is deprecated since v2.7.8, and will soon be removed
pdf.set_font("Arial", size=10)
tests/test_export.py::test_export_pdf
C:\Users\kumar\Downloads\Advanced Speech-to-Text & Text-to-Speech\backend\app\services\export_service.py:90: DeprecationWarning: The parameter "ln" is deprecated since v2.5.2. Instead of ln=True use new_x=XPos.LMARGIN, new_y=YPos.NEXT.
pdf.cell(0, 8, f"Sentiment: Polarity {sentiment.get('polarity')}, Subjectivity {sentiment.get('subjectivity')}", ln=True)
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================= 7 passed, 13 warnings in 7.04s ========================