diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-13 15:07:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-13 15:07:33 +0200 |
commit | 9fa970628c52c230e3284aa9e3b77284ea5db2f3 (patch) | |
tree | e9bb17e6f90e4d5132309948970dac7c5ab2ea58 | |
parent | 01826d9a4924a1e78c33d19b4deb833cd4c8f3b3 (diff) | |
download | jenkins.debian.net-9fa970628c52c230e3284aa9e3b77284ea5db2f3.tar.xz |
reproducible: also exclude blacklisted packages from the json, cause they are usually problems on our side. if not, bugs should be filed to make the issues visible and tracked.
-rwxr-xr-x | bin/reproducible_json.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_json.py b/bin/reproducible_json.py index 32a90a62..82afb066 100755 --- a/bin/reproducible_json.py +++ b/bin/reproducible_json.py @@ -25,7 +25,7 @@ log.info('Creating json dump of current reproducible status') # filter_query is defined in reproducible_common.py and excludes some FTBFS issues query = 'SELECT s.name, r.version, s.suite, s.architecture, r.status, r.build_date ' + \ 'FROM results AS r JOIN sources AS s ON r.package_id = s.id '+ \ - 'WHERE status != "" AND status NOT IN ("not-for-us", "404" ) AND (( status != "FTBFS" ) OR ' \ + 'WHERE status != "" AND status NOT IN ("not-for-us", "404", "blacklisted" ) AND (( status != "FTBFS" ) OR ' \ ' ( status = "FTBFS" and r.package_id NOT IN (SELECT n.package_id FROM NOTES AS n WHERE ' + filter_query + ' )))' result = sorted(query_db(query)) |