Lines Matching refs:status
60 Status = collections.namedtuple('Status', ['status', 'url'])
102 # (non-standard) status attribute and the URL.
103 self._status = attrs.get('status')
135 stat = CodeReviewHTMLParser.Status(status=self._status,
341 if (roll[bot].status == 'success'):
347 if control[bot].status != 'failure' and roll[bot].status != 'failure':
352 for (status, name, url) in [
353 (control[bot].status, control_name, control[bot].url),
354 ( roll[bot].status, roll_name, roll[bot].url)]:
356 if status == 'failure':
370 for (formatted_result, (status, name, url)) in zip(
372 [(control[bot].status, control_name, control[bot].url),
373 (roll[bot].status, roll_name, roll[bot].url)]):
374 if status != 'failure' and not identical:
376 printer(2, status)
377 elif status == 'failure':
393 if roll[bot].status == 'success':
395 elif (control[bot].status == 'success' and
396 roll[bot].status == 'failure'):
398 elif ('pending' in control[bot].status or
399 'pending' in roll[bot].status):
404 control[bot].status, roll[bot].status, diff, bot))