diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-04 01:11:28 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-04 08:55:52 +0200 |
commit | 5c61610adaa41bd3021bf583bbd7a06721d8650b (patch) | |
tree | a9bd4c81a093851853f8b4ed426c0c5fa757f39b | |
parent | 9c990769dc9824e1e7716f0d3d43450d886bb737 (diff) | |
download | jenkins.debian.net-5c61610adaa41bd3021bf583bbd7a06721d8650b.tar.xz |
reproducible: breakages: ignore blackisted and not-for-us package while looking for missing buildlogs
-rwxr-xr-x | bin/reproducible_breakages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 0fe6155a..41b7cb27 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -71,7 +71,7 @@ def lack_rbuild(): bad_pkgs = [] query = '''SELECT s.name, r.version, s.suite, s.architecture FROM sources AS s JOIN results AS r ON r.package_id=s.id - WHERE r.status != "" AND r.status != "blacklisted" + WHERE r.status NOT IN ("blacklisted", "not for us", "") ORDER BY s.name ASC, s.suite DESC''' results = query_db(query) for pkg, version, suite, arch in results: |