MCPcopy
hub / github.com/django/django / check_tasks

Function check_tasks

django/tasks/checks.py:5–11  ·  view source on GitHub ↗

Checks all registered Task backends.

(app_configs=None, **kwargs)

Source from the content-addressed store, hash-verified

3
4@checks.register
5def check_tasks(app_configs=None, **kwargs):
6 """Checks all registered Task backends."""
7
8 from . import task_backends
9
10 for backend in task_backends.all():
11 yield from backend.check()

Callers

nothing calls this directly

Calls 2

allMethod · 0.45
checkMethod · 0.45

Tested by

no test coverage detected