Fixes Travis error

added failing hook to tests
This commit is contained in:
Ilan Steemers
2015-07-01 12:42:13 +02:00
parent 50cc5b821b
commit ba525a9312
3 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -103,4 +103,6 @@ LOGGING = {
STATIC_URL = '/static/'
# Django Q specific
Q_CLUSTER = {'name': 'django_q_test'}
Q_CLUSTER = {'name': 'django_q_test',
'timeout': 60,
'recycle': 100}
+1 -1
View File
@@ -1,6 +1,6 @@
from django.core.urlresolvers import reverse
from django.utils import timezone
from future.types.newstr import unicode
import pytest
+2 -2
View File
@@ -106,8 +106,8 @@ def test_async(r):
f = async(multiply, 753, 2, hook=assert_result, list_key=list_key)
# model as argument
g = async('django_q.tests.tasks.get_task_name', Task(name='John'), list_key=list_key)
# args and kwargs
h = async('django_q.tests.tasks.word_multiply', 2, word='django', list_key=list_key, redis=r)
# args and kwargs and broken hook
h = async('django_q.tests.tasks.word_multiply', 2, word='django', hook='fail.me', list_key=list_key, redis=r)
# check if everything has a task name
assert isinstance(a, str)
assert isinstance(b, str)