Save output of integration test results to files we can archive

pull/13615/merge
James Cammarata 10 years ago
parent 6963955cb4
commit 3a57d9472c

@ -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