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

@@ -123,3 +123,7 @@ class TestSimpleTextAggregator(unittest.IsolatedAsyncioTestCase):
# flush() returns any remaining text (the "W" in this case)
result = await self.aggregator.flush()
assert result.text == "W"
if __name__ == "__main__":
unittest.main()