fix Marathon bust the gate

Marathon rpm package do not work in docker, add it to exclude_image to
fix the gate

Change-Id: Ia0d1fd0f7a57c709f76d86905326c546c025b1b5
Closes-Bug: #1624779
This commit is contained in:
Jeffrey Zhang 2016-09-18 09:26:01 +08:00
parent 7a6464236f
commit 6a4e35ad73
1 changed files with 7 additions and 4 deletions

View File

@ -67,7 +67,8 @@ class BuildTest(object):
class BuildTestCentosBinary(BuildTest, base.BaseTestCase):
excluded_images = ["murano-base",
excluded_images = ["marathon",
"murano-base",
"ironic-pxe",
"ironic-inspector",
"mistral-base",
@ -80,7 +81,8 @@ class BuildTestCentosBinary(BuildTest, base.BaseTestCase):
class BuildTestCentosSource(BuildTest, base.BaseTestCase):
excluded_images = ["gnocchi-base",
excluded_images = ["marathon",
"gnocchi-base",
"murano-base",
"ironic-pxe",
"ironic-inspector",
@ -116,7 +118,8 @@ class BuildTestUbuntuSource(BuildTest, base.BaseTestCase):
class BuildTestOracleLinuxBinary(BuildTest, base.BaseTestCase):
excluded_images = ["murano-base",
excluded_images = ["marathon",
"murano-base",
"ironic-pxe",
"ironic-inspector",
"mistral-base",
@ -129,7 +132,7 @@ class BuildTestOracleLinuxBinary(BuildTest, base.BaseTestCase):
class BuildTestOracleLinuxSource(BuildTest, base.BaseTestCase):
excluded_images = []
excluded_images = ["marathon"]
def setUp(self):
super(BuildTestOracleLinuxSource, self).setUp()