tests: Tag resource intensive tasks, to skip when strategy=linear
The ansible_mitogen test suite takes over an hour when Ansible is not accelerated by Mitogen. This change aims to reduce that by skipping tests with a large number of iterations when the linear strategy is chosen. The tagged tests are intended to uncover Mitogen resource leaks. Since Mitogen is not invoked when strategy=linear, the slight reduction in test coverage is an acceptable trade off.pull/788/head
parent
8654af738b
commit
bb271d8d00
@ -1,3 +1,4 @@
|
|||||||
|
- include: setup/all.yml
|
||||||
- include: regression/all.yml
|
- include: regression/all.yml
|
||||||
- include: integration/all.yml
|
- include: integration/all.yml
|
||||||
|
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
- include: report.yml
|
@ -0,0 +1,8 @@
|
|||||||
|
- name: Report runtime settings
|
||||||
|
hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- debug: {var: ansible_forks}
|
||||||
|
- debug: {var: ansible_run_tags}
|
||||||
|
- debug: {var: ansible_skip_tags}
|
||||||
|
- debug: {var: ansible_version.full}
|
Loading…
Reference in New Issue