mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-13 23:38:20 +00:00
Move the "binary" field from Britney to Suite
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
0c6314b466
commit
f464baa257
@ -325,8 +325,9 @@ class Britney(object):
|
||||
for suite in self.suite_info:
|
||||
sources = self.read_sources(suite.path)
|
||||
suite.sources = sources
|
||||
suite.binaries = self.read_binaries(suite, self.options.architectures)
|
||||
self.sources[suite.name] = sources
|
||||
self.binaries[suite.name] = self.read_binaries(suite, self.options.architectures)
|
||||
self.binaries[suite.name] = suite.binaries
|
||||
|
||||
# compute inverse Testsuite-Triggers: map, unifying all series
|
||||
self.logger.info('Building inverse testsuite_triggers map')
|
||||
|
@ -34,6 +34,7 @@ class Suite(object):
|
||||
self.path = path
|
||||
self.suite_short_name = suite_short_name if suite_short_name else ''
|
||||
self.sources = {}
|
||||
self.binaries = {}
|
||||
|
||||
@property
|
||||
def excuses_suffix(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user