(broker)
| 59 | |
| 60 | @pytest.mark.django_db |
| 61 | def test_sync_raise_exception(broker): |
| 62 | with pytest.raises(TaskError): |
| 63 | async_task("django_q.tests.tasks.raise_exception", broker=broker, sync=True) |
| 64 | |
| 65 | |
| 66 | @pytest.mark.django_db |
nothing calls this directly
no test coverage detected