aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2020-06-19Scheduler: add support for in operatorGravatar MarkKoz-0/+4
2020-06-19Scheduler: name tasksGravatar MarkKoz-1/+1
Makes them easier to identify when debugging.
2020-06-19Scheduler: directly take the awaitable to scheduleGravatar MarkKoz-23/+4
This is a major change which simplifies the interface. It removes the need to implement an abstract method, which means the class can now be instantiated rather than subclassed.
2020-06-19Scheduler: use separate logger for each instanceGravatar MarkKoz-24/+17
Each instance now requires a name to be specified, which will be used as the suffix of the logger's name. This removes the need to manually prepend every log message with the name.