mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix ansible-test dependency processing.
Previously, the following dependencies: A used by B B used by C Would have been converted to: A used by C B used by C Intead of being expanded to: A used by B A used by C B used by C This change preserves the existing dependency when expanding it.
This commit is contained in:
@@ -389,7 +389,6 @@ def analyze_integration_target_dependencies(integration_targets):
|
||||
if new_target_name not in dependent_target_names:
|
||||
dependent_target_names.add(new_target_name)
|
||||
changes += 1
|
||||
dependent_target_names.remove(dependent_target_name)
|
||||
|
||||
if not changes:
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user