From c3fa4105f0cf8768d81bfae39a14abeb5afd9c79 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 22 May 2015 15:37:28 +0200 Subject: reproducible: only care about dependency failures in testing as the other suites are moving too much --- bin/reproducible_breakages.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 7e3cbcbb..268875db 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -107,9 +107,12 @@ def lack_buildinfo(): def pbuilder_dep_fail(): log.info('running pbuilder_dep_fail check...') bad_pkgs = [] + # we only care about these failures in the testing suite as they happen + # all the time in other suites, as packages are buggy + # and specific versions also come and go 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 = "FTBFS" + WHERE r.status = "FTBFS" AND s.suite = "testing" ORDER BY s.name ASC, s.suite DESC''' results = query_db(query) for pkg, version, suite, arch in results: -- cgit v1.2.3-54-g00ecf