Miscellaneous ansible-test updates. (#27937)

* Add keep alives to ansible-test ssh delegation.
* Improve ansible-test JSON parsing error messages.
* Increase ansible-test delegation sleep and retry.
* Update ansible-test to recognize .psm1 files.
This commit is contained in:
Matt Clay 2017-08-08 22:55:17 -07:00 committed by GitHub
parent 875c8e4f3e
commit a40cb5a47f
4 changed files with 24 additions and 9 deletions

View file

@ -260,7 +260,7 @@ class PathMapper(object):
return minimal
if path.startswith('lib/ansible/module_utils/'):
if ext == '.ps1':
if ext in ('.ps1', '.psm1'):
return {
'windows-integration': self.integration_all_target,
}