The config integration test belongs in ansible-base. However, migrate.py is putting it into the netcommon collection.
This is most likely because there is a config.py plugin being migrated to that collection.
When auto-detecting integration tests, only module/action targets are named the same as the module/action (without a preceding _). All non-module/non-action plugins should only match targets named {plugin_type}_{plugin_name}.
The config integration test belongs in ansible-base. However,
migrate.py
is putting it into the netcommon collection.This is most likely because there is a
config.py
plugin being migrated to that collection.When auto-detecting integration tests, only module/action targets are named the same as the module/action (without a preceding
_
). All non-module/non-action plugins should only match targets named{plugin_type}_{plugin_name}
.