diff --git a/britney.conf b/britney.conf index a182cd5..ddfd147 100644 --- a/britney.conf +++ b/britney.conf @@ -57,3 +57,4 @@ REMOVE_OBSOLETE = no # disable autopkgtest ADT_SERIES = saucy ADT_DEBUG = no +ADT_ARCHES = amd64 i386 diff --git a/britney.py b/britney.py index 1612e4d..1d4540a 100755 --- a/britney.py +++ b/britney.py @@ -1506,7 +1506,8 @@ class Britney(object): text = text + " (but %s isn't keeping up, so never mind)" % (arch) else: update_candidate = False - run_autopkgtest = False + if arch in self.options.adt_arches.split(): + run_autopkgtest = False excuse.addhtml(text) @@ -1556,7 +1557,8 @@ class Britney(object): text = text + " (but %s isn't keeping up, so nevermind)" % (arch) else: update_candidate = False - run_autopkgtest = False + if arch in self.options.adt_arches.split(): + run_autopkgtest = False if self.dates is None or self.date_now != self.dates[src][1]: excuse.addhtml(text)