tests: add unittest.main() call

This commit is contained in:
Aleix Conchillo Flaqué
2026-01-28 11:01:52 -08:00
parent b486f35c70
commit 305ab44132
37 changed files with 149 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
"""Tests for PiperTTSService."""
import asyncio
import unittest
import aiohttp
import pytest
@@ -143,3 +144,7 @@ async def test_run_piper_tts_error(aiohttp_client):
assert "status: 404" in up_frames[0].error, (
"ErrorFrame should contain details about the 404"
)
if __name__ == "__main__":
unittest.main()