diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-20 02:46:05 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-20 08:58:02 +0200 |
commit | d40cc7e7b52cc445f8823b0d9def309c3a40ec9b (patch) | |
tree | 8fe588bbfc970f4e7b1b7229911ea55f32fe11eb | |
parent | d1f6ef1a704c11d2a7f0d74ae9895b61b1bbc314 (diff) | |
download | jenkins.debian.net-d40cc7e7b52cc445f8823b0d9def309c3a40ec9b.tar.xz |
reproducible: breakages: move debbindiff troubles down on the list (issues above are more important)
-rwxr-xr-x | bin/reproducible_breakages.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 444d9ea5..fa305525 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -235,13 +235,6 @@ def gen_html(): entries=alien_dbd()) html += _gen_section('rb-pkg pages that should not be there:', None, entries=alien_rbpkg()) - # debbindiff troubles - without_dbd, bad_dbd = unrep_with_dbd_issues() - html += _gen_section('are marked as unreproducible, but without ' + - 'debbindiff output:', without_dbd) - html += _gen_section('are marked as unreproducible, but their ' + - 'debbindiff output does not seem to be an html ' + - 'file:', bad_dbd) # debbindiff report where it shouldn't be html += _gen_section('are not marked as unreproducible, but they ' + 'have a debbindiff file:', not_unrep_with_dbd_file()) @@ -250,6 +243,13 @@ def gen_html(): lack_rbuild()) html += _gen_section('are built but don\'t have a .buildinfo file:', lack_buildinfo()) + # debbindiff troubles + without_dbd, bad_dbd = unrep_with_dbd_issues() + html += _gen_section('are marked as unreproducible, but without ' + + 'debbindiff output:', without_dbd) + html += _gen_section('are marked as unreproducible, but their ' + + 'debbindiff output does not seem to be an html ' + + 'file:', bad_dbd) # pbuilder-satisfydepends failed html += _gen_section('failed to match their build-dependencies:', pbuilder_dep_fail()) |