Skip to content

Commit cbd4817

Browse files
committed
Run integration tests
1 parent 8e4d75a commit cbd4817

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/component_updater.py

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ def __update_component(self, infra_terraform_dir, component_file: str) -> Compon
167167
return response
168168

169169
updated_component = self.__clone_infra_for_component(infra_terraform_dir, migrated_component)
170+
updated_component.migrate()
170171

171172
logging.debug(f"Updated component:\n{str(updated_component)}")
172173

src/tools_manager.py

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def git_get_latest_tag(self, git_dir: str):
8080
return None
8181

8282
tags = response.stdout.decode().split("\n")
83-
logging.info(tags)
8483
for tag in tags:
8584
try:
8685
normalized_tag = tag.strip("'").strip('v')

0 commit comments

Comments
 (0)