1
0
Fork 0

Fix modified projects resolution when there are unmapped changes

for #325
This commit is contained in:
Mikhail Goncharov 2021-07-23 09:30:53 +02:00
parent 75ca275b10
commit 1b116862e6

View file

@ -50,7 +50,7 @@ if __name__ == '__main__':
modified_projects, unmapped_changes = cp.get_changed_projects(modified_files)
if unmapped_changes:
logging.warning('There were changes that could not be mapped to a project. Checking everything')
modified_projects = cp.all_projects
modified_projects = set(cp.all_projects)
logging.info(f'modified projects: {modified_projects}')
# Add projects that depend on modified.
affected_projects = cp.get_affected_projects(modified_projects)