mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
027ffcae56
* Fix permissions. * Fix more FQCNs. * Adjust more ansible_pkg_mgr usages. * Fix plugin FQCN. * Change port 12345 -> 12347. * Print port usage first. * Support both short and long name. * Revert "Print port usage first." This reverts commit ea1dbc60f08a2664a8b01abba7aa7610bc2a23f1. * Revert "Change port 12345 -> 12347." This reverts commit cbc13510ee9f855110b4134517b2a548745a1fb0. * Fix cleanup. * Add more FQCNs. * Allow short name as well. ci_complete * Add remaining ignore.txt entries for ipaddress. * Remove kubevirt ignore.txt entries. * Added missing entries, and sorted. * Remove superfluous fact gathering. * Fix FQCNs. * Temporarily disable supervisorctl (fails on OSX because socket path is too long) * Add missing file. * Fix permissions. ci_complete
65 lines
2.6 KiB
YAML
65 lines
2.6 KiB
YAML
---
|
|
- name: Install lxml (FreeBSD)
|
|
package:
|
|
name: '{{ "py27-lxml" if ansible_python.version.major == 2 else "py36-lxml" }}'
|
|
state: present
|
|
when: ansible_os_family == "FreeBSD"
|
|
|
|
# Needed for MacOSX !
|
|
- name: Install lxml
|
|
pip:
|
|
name: lxml
|
|
state: present
|
|
# when: ansible_os_family == "Darwin"
|
|
|
|
- name: Get lxml version
|
|
command: "{{ ansible_python_interpreter }} -c 'from lxml import etree; print(\".\".join(str(v) for v in etree.LXML_VERSION))'"
|
|
register: lxml_version
|
|
|
|
- name: Set lxml capabilities as variables
|
|
set_fact:
|
|
# NOTE: Some tests require predictable element attribute order,
|
|
# which is only guaranteed starting from lxml v3.0alpha1
|
|
lxml_predictable_attribute_order: '{{ lxml_version.stdout is version("3", ">=") }}'
|
|
|
|
# NOTE: The xml module requires at least lxml v2.3.0
|
|
lxml_xpath_attribute_result_attrname: '{{ lxml_version.stdout is version("2.3.0", ">=") }}'
|
|
|
|
- name: Only run the tests when lxml v2.3.0+
|
|
when: lxml_xpath_attribute_result_attrname
|
|
block:
|
|
|
|
- include_tasks: test-add-children-elements.yml
|
|
- include_tasks: test-add-children-from-groupvars.yml
|
|
- include_tasks: test-add-children-insertafter.yml
|
|
- include_tasks: test-add-children-insertbefore.yml
|
|
- include_tasks: test-add-children-with-attributes.yml
|
|
- include_tasks: test-add-element-implicitly.yml
|
|
- include_tasks: test-count.yml
|
|
- include_tasks: test-mutually-exclusive-attributes.yml
|
|
- include_tasks: test-remove-attribute.yml
|
|
- include_tasks: test-remove-element.yml
|
|
- include_tasks: test-set-attribute-value.yml
|
|
- include_tasks: test-set-children-elements.yml
|
|
- include_tasks: test-set-children-elements-level.yml
|
|
- include_tasks: test-set-element-value.yml
|
|
- include_tasks: test-set-element-value-empty.yml
|
|
- include_tasks: test-pretty-print.yml
|
|
- include_tasks: test-pretty-print-only.yml
|
|
- include_tasks: test-add-namespaced-children-elements.yml
|
|
- include_tasks: test-remove-namespaced-attribute.yml
|
|
- include_tasks: test-set-namespaced-attribute-value.yml
|
|
- include_tasks: test-set-namespaced-element-value.yml
|
|
- include_tasks: test-set-namespaced-children-elements.yml
|
|
- include_tasks: test-get-element-content.yml
|
|
- include_tasks: test-xmlstring.yml
|
|
- include_tasks: test-children-elements-xml.yml
|
|
|
|
# Unicode tests
|
|
- include_tasks: test-add-children-elements-unicode.yml
|
|
- include_tasks: test-add-children-with-attributes-unicode.yml
|
|
- include_tasks: test-set-attribute-value-unicode.yml
|
|
- include_tasks: test-count-unicode.yml
|
|
- include_tasks: test-get-element-content.yml
|
|
- include_tasks: test-set-children-elements-unicode.yml
|
|
- include_tasks: test-set-element-value-unicode.yml
|