We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a476b commit e54b332Copy full SHA for e54b332
tests/test_signals.py
@@ -4,10 +4,12 @@
4
from django.dispatch import receiver
5
6
from pictures import signals, tasks
7
+from tests.test_migrations import skip_dramatiq
8
from tests.testapp.models import SimpleModel
9
10
11
@pytest.mark.django_db
12
+@skip_dramatiq
13
def test_process_picture_sends_process_picture_done(image_upload_file):
14
obj = SimpleModel.objects.create(picture=image_upload_file)
15
@@ -31,6 +33,7 @@ def test_process_picture_sends_process_picture_done(image_upload_file):
31
33
32
34
35
36
37
def test_process_picture_sends_process_picture_done_on_create(image_upload_file):
38
handler = Mock()
39
signals.picture_processed.connect(handler)
0 commit comments