summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_breakages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-04 01:11:28 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-04 08:55:52 +0200
commit5c61610adaa41bd3021bf583bbd7a06721d8650b (patch)
treea9bd4c81a093851853f8b4ed426c0c5fa757f39b /bin/reproducible_breakages.py
parent9c990769dc9824e1e7716f0d3d43450d886bb737 (diff)
downloadjenkins.debian.net-5c61610adaa41bd3021bf583bbd7a06721d8650b.tar.xz
reproducible: breakages: ignore blackisted and not-for-us package while looking for missing buildlogs
Diffstat (limited to 'bin/reproducible_breakages.py')
-rwxr-xr-xbin/reproducible_breakages.py2
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: