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

@@ -566,3 +566,7 @@ class TestLLMAssistantAggregator(unittest.IsolatedAsyncioTestCase):
# The pending text should be emitted on EndFrame
self.assertEqual(len(stop_messages), 1)
self.assertEqual(stop_messages[0].content, "Hello from Pipecat!")
if __name__ == "__main__":
unittest.main()