You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/executor
Pilou 7908f78fa6 module_common: handle None value for templar (#36651)
* module_common: set required parameter templar

Fix the following error (related to b455901):

  $ ./hacking/test-module -m ./lib/ansible/modules/system/ping.py -I ansible_python_interpreter=/usr/bin/python
  Traceback (most recent call last):
    File "./hacking/test-module", line 268, in <module>
      main()
    File "./hacking/test-module", line 249, in main
      (modfile, modname, module_style) = boilerplate_module(options.module_path, options.module_args, interpreters, options.check, options.filename)
    File "./hacking/test-module", line 152, in boilerplate_module
      task_vars=task_vars
    File "ansible/lib/ansible/executor/module_common.py", line 910, in modify_module
      environment=environment)
    File "ansible/lib/ansible/executor/module_common.py", line 736, in _find_module_utils
      shebang, interpreter = _get_shebang(u'/usr/bin/python', task_vars, templar)
    File "ansible/lib/ansible/executor/module_common.py", line 452, in _get_shebang
      interpreter = templar.template(task_vars[interpreter_config].strip())
  AttributeError: 'NoneType' object has no attribute 'template'

* module_common.modify_module: templar is required
6 years ago
..
module_common module_common: handle None value for templar (#36651) 6 years ago
__init__.py Add empty-init code-smell script. (#18406) 8 years ago
test_play_iterator.py Cache tasks as they are queued instead of en masse (#34752) 7 years ago
test_playbook_executor.py test/: PEP8 compliancy (#24803) 7 years ago
test_task_executor.py Recursively remove args with omit as as their value, to match suboptions in argument_spec (#35299) 7 years ago
test_task_queue_manager_callbacks.py Remove hack for backwards compatible v2_playbook_on_start callback 7 years ago
test_task_result.py Add test for clean_copy preservation of keys 7 years ago