From d16584a8caf5d59b3d0dbc27ac0c4db80f5f866e Mon Sep 17 00:00:00 2001 From: Fabio Tranchitella Date: Tue, 5 Sep 2006 08:32:41 +0000 Subject: [PATCH] Fixed a strange behaviour of extension-based testing system. --- britney.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/britney.py b/britney.py index a9c713f..18b48f0 100644 --- a/britney.py +++ b/britney.py @@ -267,9 +267,8 @@ class Britney: self.binaries['testing'][arch] = self.read_binaries(self.options.testing, "testing", arch) self.binaries['unstable'][arch] = self.read_binaries(self.options.unstable, "unstable", arch) self.binaries['tpu'][arch] = self.read_binaries(self.options.tpu, "tpu", arch) - # build the testing system if not already available - if arch not in self.systems: - self.build_systems(arch) + # build the testing system + self.build_systems(arch) # read the release-critical bug summaries for testing and unstable self.bugs = {'unstable': self.read_bugs(self.options.unstable),