mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-04-10 10:41:21 +00:00
Don't have britney create migration-references itself
The initial idea was to do this to bootstrap the baseline, but it turns out that this has the drawback it triggers runs for a package that has a new autopkgtest where it didn't have it in the version in the target suite. It was considered harmless (as it would just have a failing reference), but due to autodep8, package can have a passing result in the target suite while the new autopkgtest is actually broken. Such a package should not be blocked / getting a penalty. The alternative is to make the check here smarter, but as this is only for bootstrapping, lets do that outside of britney proper.
This commit is contained in:
parent
94dc17c0d7
commit
08a6cdde6f
@ -747,20 +747,6 @@ class AutopkgtestPolicy(BasePolicy):
|
||||
arch_list.append(arch)
|
||||
arch_list.sort()
|
||||
self.send_test_request(src, arch, trigger, huge=huge)
|
||||
if self.options.adt_baseline == 'reference':
|
||||
# Check if we already have a reference for this src on this
|
||||
# arch (or pending).
|
||||
try:
|
||||
self.test_results[REF_TRIG][src][arch]
|
||||
except KeyError:
|
||||
try:
|
||||
arch_list = self.pending_tests[REF_TRIG][src]
|
||||
if arch not in arch_list:
|
||||
raise KeyError # fall through
|
||||
except KeyError:
|
||||
self.logger.info('Requesting %s autopkgtest on %s to set a reference',
|
||||
src, arch)
|
||||
self.send_test_request(src, arch, REF_TRIG, huge=huge)
|
||||
|
||||
def result_in_baseline(self, src, arch):
|
||||
'''Get the result for src on arch in the baseline
|
||||
|
Loading…
x
Reference in New Issue
Block a user