Access ci_base date via compose

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2018-04-15 02:06:02 +02:00
parent a217eea24e
commit 527394707d
2 changed files with 2 additions and 2 deletions

View File

@ -789,7 +789,7 @@ def version_generator(compose, gen):
return compose.image_release
elif gen == '!VERSION_FROM_VERSION_DATE_RESPIN':
return '%s.%s.%s' % (compose.ci_base.release.version,
compose.ci_base.date,
compose.compose_date,
compose.compose_respin)
elif gen and gen[0] == '!':
raise RuntimeError("Unknown version generator '%s'" % gen)

View File

@ -626,7 +626,6 @@ class TestVersionGenerator(unittest.TestCase):
ci.respin = 0
ci.id = 'RHEL-8.0-20180101.0'
ci.release.version = '8'
ci.date = '20160101'
ci.type = 'nightly'
ci.type_suffix = ''
ci.label = 'RC-1.0'
@ -635,6 +634,7 @@ class TestVersionGenerator(unittest.TestCase):
self.compose = mock.MagicMock()
self.compose.ci_base = ci
self.compose.compose_respin = 0
self.compose.compose_date = '20160101'
def test_unknown_generator(self):
compose = mock.Mock()