totest-manager: exclude images_staging as used by ARM

This commit is contained in:
Ludwig Nussel 2016-02-11 11:52:45 +01:00
parent 64014193f6
commit 8472ea23f5

View File

@ -197,6 +197,8 @@ class ToTestBase(object):
"""
# coolo's experience says that 'finished' won't be
# sufficient here, so don't try to add it :-)
codes = ['published', 'unpublished'] if not codes else codes
url = self.api.makeurl(['build', project, '_result'], {'code': 'failed'})
@ -206,7 +208,7 @@ class ToTestBase(object):
for repo in root.findall('result'):
# 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'):
if repo.get('repository') in ('ports', 'factory', 'images_staging'):
continue
# ignore 32bit for now. We're only interesed in aarch64 here
if repo.get('arch') in ('armv6l', 'armv7l'):