X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fcruft_report.py;h=0a1534c59dfaf8e0c6bedf9478f0133c81a12e8c;hb=2cd56ae18c977d13b8676ca60ef9fe85856e71f2;hp=63374859fa8019a10165ec318dea5cea14c38ce2;hpb=1e5659500391bce37a28870ef7bce5c59eba68c7;p=dak.git diff --git a/dak/cruft_report.py b/dak/cruft_report.py index 63374859..0a1534c5 100755 --- a/dak/cruft_report.py +++ b/dak/cruft_report.py @@ -357,9 +357,9 @@ def main (): # Set up checks based on mode if Options["Mode"] == "daily": - checks = [ "nbs", "nviu", "obsolete source" ] + checks = [ "nbs", "nviu", "nvit", "obsolete source" ] elif Options["Mode"] == "full": - checks = [ "nbs", "nviu", "obsolete source", "nfu", "dubious nbs", "bnb", "bms", "anais" ] + checks = [ "nbs", "nviu", "nvit", "obsolete source", "nfu", "dubious nbs", "bnb", "bms", "anais" ] else: utils.warn("%s is not a recognised mode - only 'full' or 'daily' are understood." % (Options["Mode"])) usage(1) @@ -520,6 +520,9 @@ def main (): if "nviu" in checks: do_newer_version('unstable', 'experimental', 'NVIU', session) + if "nvit" in checks: + do_newer_version('testing', 'testing-proposed-updates', 'NVIT', session) + if "nbs" in checks: do_nbs(real_nbs)