ignore 'factory' repo of arm

the factory repo was explicitly set up as alternative to the images repo to be ignore by the totest manager
This commit is contained in:
Ludwig Nussel 2015-04-29 13:31:30 +02:00
parent fa4e6c3c14
commit fc37327cad

View File

@ -171,7 +171,9 @@ class ToTestBase(object):
f = self.api.retried_GET(url)
root = ET.parse(f).getroot()
for repo in root.findall('result'):
if repo.get('repository') == 'ports':
# ignore ports. 'factory' is used by arm for repos that are not
# meant to use the totest manager.
if repo.get('repository') in ('ports', 'factory'):
continue
# ignore 32bit for now. We're only interesed in aarch64 here
if repo.get('arch') in ('armv6l', 'armv7l'):