ed376abe42
* Integration tests for zabbix_host using Zabbix on Ubuntu 14.04. * fix duplicate yaml key in test * .changed -> is changed, |failed -> is failed, trim configfile * zabbix_host integration test does not need BOTMETA entry, inherited from module
16 lines
612 B
YAML
16 lines
612 B
YAML
---
|
|
# setup stuff not testing zabbix_host
|
|
- include: zabbix_host_setup.yml
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
|
|
|
# zabbix_host module tests
|
|
- include: zabbix_host_tests.yml
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
|
|
|
# documentation example tests
|
|
- include: zabbix_host_doc.yml
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|
|
|
|
# tear down stuff set up earlier
|
|
- include: zabbix_host_teardown.yml
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'trusty'
|