upping the coverage

This commit is contained in:
Ilan Steemers
2015-07-07 20:20:28 +02:00
parent b05fe76fbc
commit 4ee47fc38f
4 changed files with 7 additions and 7 deletions

View File

@@ -46,10 +46,8 @@ class Conf(object):
LABEL = conf.get('label', 'Django Q')
# Use the secret key for package signing
try:
SECRET_KEY = settings.SECRET_KEY
except AttributeError:
SECRET_KEY = 'omgicantbelieveudonthaveasecretkey'
# Django itself should raise an error if it's not configured
SECRET_KEY = settings.SECRET_KEY
# The redis list key
Q_LIST = 'django_q:{}:q'.format(PREFIX)

View File

@@ -52,8 +52,6 @@ def monitor(run_once=False):
status = term.red(str(Conf.STOPPED))
elif stat.status == Conf.IDLE:
status = str(Conf.IDLE)
else:
status = term.yellow(str(stat.status))
# color q's
tasks = stat.task_q_size
if tasks > 0:
@@ -98,7 +96,7 @@ class Status(object):
self.reincarnations = 0
self.cluster_id = pid
self.sentinel = 0
self.status = 'Idle'
self.status = Conf.STOPPED
self.done_q_size = 0
self.host = socket.gethostname()
self.monitor = 0

View File

@@ -39,9 +39,12 @@ def test_cluster_initial(r):
r.delete(list_key)
c = Cluster(list_key=list_key)
assert c.sentinel is None
assert c.stat.status == Conf.STOPPED
assert c.start() > 0
assert c.sentinel.is_alive() is True
assert c.is_running
assert c.is_stopping is False
assert c.is_starting is False
stat = c.stat
assert stat.status == Conf.IDLE
assert c.stop() is True

View File

@@ -59,3 +59,4 @@ def test_scheduler(r):
)
assert schedule is not None
assert schedule.last_run() is None
scheduler()