示例#1
0
 def test_format_feature_branchand_hash(self):
     os.environ[environment.GIT_COMMIT] = "12345ai87q23b4sud6fyae"
     ivs = ImageVersionStep()
     self.assertEqual(
         ivs.append_commit_hash("origin.a.feature.branch-2.3.2"),
         "origin.a.feature.branch-2.3.2_12345ai")
示例#2
0
 def test_format_image_version_with_build_number_as_patch_and_hash(self):
     os.environ[environment.GIT_COMMIT] = "12345ai87q23b4sud6fyae"
     ivs = ImageVersionStep()
     self.assertEqual(ivs.append_commit_hash("1.2.123"), "1.2.123_12345ai")