diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-28 18:24:24 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-04 12:48:22 +0200 |
commit | 60656c0252c951a1cbaf74921fe7505640cfbbd9 (patch) | |
tree | 73935825447753697a002a51c967479191eb542b /bin | |
parent | 6161fccd1b27fdf610454a36b9de5687731002e8 (diff) | |
download | jenkins.debian.net-60656c0252c951a1cbaf74921fe7505640cfbbd9.tar.xz |
reproducible: common.py: drop ftbfs_due_to_obsolete_dependencies from filtered issue. I want maintainers to fix their rc buggy packages
also remove ftbfs_werror_equals which does not exist anymore
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index e2b4d2c6..97617f18 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -187,14 +187,13 @@ html_foot_page_style_note = Template((tab*2).join(""" url2html = re.compile(r'((mailto\:|((ht|f)tps?)\://|file\:///){1}\S+)') # filter used on the index_FTBFS pages and for the reproducible.json -filtered_issues = ('ftbfs_werror_equals', +filtered_issues = ( 'bad_handling_of_extra_warnings', 'ftbfs_wdatetime', 'ftbfs_wdatetime_due_to_swig', 'ftbfs_pbuilder_malformed_dsc', 'ftbfs_in_jenkins_setup', 'ftbfs_build_depends_not_available_on_amd64', - 'ftbfs_due_to_obsolete_dependencies', 'ftbfs_due_to_root_username', 'ftbfs_due_to_virtual_dependencies') filter_query = '' |