Ignore when the status is unacceptable.

This commit is contained in:
Alberto Planas 2014-10-01 11:54:38 +02:00
parent 8ecbfac2f0
commit 497b44e4cc

View File

@ -170,6 +170,11 @@ class OpenQAReport(object):
if info['overall_state'] == 'empty':
return
# The 'unacceptable' status means that the project will be
# replaced soon. Better do not disturb with noise.
if info['overall_state'] == 'unacceptable':
return
report_broken_packages = self._report_broken_packages(info)
report_openQA, some_openqa_fail = self._report_openQA(info)