From 8584a061e11b968cede7daae358fd6ad4fce8ab2 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 2 Jul 2013 11:59:29 +0100 Subject: [PATCH] Run autopkgtests as soon as amd64 and i386 are ready to go. --- britney.conf | 1 + britney.py | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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)