From 0b005c192b2c141c7f6c9bff4a0702361814c21d Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 13 Aug 2025 13:36:30 -0400 Subject: Prototype PodcastItLater This implements a working prototype of PodcastItLater. It basically just works for a single user currently, but the articles are nice to listen to and this is something that we can start to build with. --- Omni/Test.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Omni/Test.py') diff --git a/Omni/Test.py b/Omni/Test.py index 57270f9..89ef1fa 100644 --- a/Omni/Test.py +++ b/Omni/Test.py @@ -9,6 +9,10 @@ import unittest TestCase = unittest.TestCase +class TestError(Exception): + """When the test environment or harness encounters a problem.""" + + def run(area: App.Area, tests: list[typing.Any]) -> None: """Run the given tests with loglevel determined by area.""" Log.setup(logging.DEBUG if area == App.Area.Test else logging.ERROR) -- cgit v1.2.3