Save output of integration test results to files we can archive

pull/13663/head
James Cammarata 9 years ago
parent d512717cd2
commit 7607e55a5a

@ -28,4 +28,14 @@
delay: 30
ignore_errors: true
- debug: var=test_results
- name: save stdout test results for each host
local_action: copy
args:
dest: "{{sync_dir}}/{{inventory_hostname}}.stdout_results.txt"
content: "{{test_results.stdout}}"
- name: save stderr test results for each host
local_action: copy
args:
dest: "{{sync_dir}}/{{inventory_hostname}}.stderr_results.txt"
content: "{{test_results.stderr}}"

Loading…
Cancel
Save