(x, y)
| 132 | |
| 133 | @celery_app.task(name="celery_worker.test_celery") |
| 134 | def divide(x, y): |
| 135 | import time |
| 136 | print("Starting divide task") |
| 137 | time.sleep(5) |
| 138 | return x / y |
| 139 | |
| 140 | # Celery task for processing text |
| 141 | @celery_app.task(bind=True, rate_limit="1/m", name="celery_worker.process_text_task") |
nothing calls this directly
no outgoing calls
no test coverage detected