mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-03-13 20:31:12 +00:00
britney.py: Skip ESSENTIAL consistency check
The live-data tests rely on an inconsistency, since they were before Britney started to record the Essential field. Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
c28bc84f57
commit
0c5651576a
@ -334,9 +334,13 @@ class Britney(object):
|
||||
def _check_mismatches(self, arch):
|
||||
suites = [s for s in self.binaries if arch in self.binaries[s]]
|
||||
|
||||
# NB: ESSENTIAL deliberately skipped as the 2011 and 2012
|
||||
# parts of the live-data tests requires it (britney merges
|
||||
# this field correctly from the unstable version where
|
||||
# available)
|
||||
check_field_name = dict( (globals()[fn], fn) for fn in
|
||||
("SOURCE SOURCEVER ARCHITECTURE MULTIARCH"
|
||||
+ " DEPENDS CONFLICTS PROVIDES ESSENTIAL").split() )
|
||||
+ " DEPENDS CONFLICTS PROVIDES").split() )
|
||||
check_fields = check_field_name.keys()
|
||||
|
||||
any_mismatch = False
|
||||
|
Loading…
x
Reference in New Issue
Block a user