Ignore when the status is unacceptable.
This commit is contained in:
parent
8ecbfac2f0
commit
497b44e4cc
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user