From: Chris Lamb Date: Thu, 29 Oct 2009 20:09:50 +0000 (+0000) Subject: Add NVIT test. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;ds=sidebyside;h=d92abe006e59416426d486cdd8ce9158905937c0;p=dak.git Add NVIT test. Signed-off-by: Chris Lamb --- 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)