Removing .out file for integration tests and adding to .gitignore
This commit is contained in:
parent
f4bd3be71f
commit
5466510edb
2 changed files with 1 additions and 63 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -48,6 +48,7 @@ deb-build
|
||||||
credentials.yml
|
credentials.yml
|
||||||
# test output
|
# test output
|
||||||
*.retry
|
*.retry
|
||||||
|
*.out
|
||||||
.coverage
|
.coverage
|
||||||
.tox
|
.tox
|
||||||
results.xml
|
results.xml
|
||||||
|
|
|
@ -1,63 +0,0 @@
|
||||||
Using /etc/ansible/ansible.cfg as config file
|
|
||||||
2 plays in test_blocks/main.yml
|
|
||||||
|
|
||||||
PLAY [simple block test] *******************************************************
|
|
||||||
|
|
||||||
TASK [setup] *******************************************************************
|
|
||||||
ok: [localhost]
|
|
||||||
|
|
||||||
TASK [set block tasks run flag] ************************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"block_tasks_run": true}, "changed": false}
|
|
||||||
|
|
||||||
TASK [fail in tasks] ***********************************************************
|
|
||||||
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "Failed as requested from task"}
|
|
||||||
|
|
||||||
TASK [set block rescue run flag] ***********************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"block_rescue_run": true}, "changed": false}
|
|
||||||
|
|
||||||
TASK [fail in rescue] **********************************************************
|
|
||||||
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "Failed as requested from task"}
|
|
||||||
|
|
||||||
TASK [set block always run flag] ***********************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"block_always_run": true}, "changed": false}
|
|
||||||
|
|
||||||
TASK [set nested block always run flag] ****************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"nested_block_always_run": true}, "changed": false}
|
|
||||||
|
|
||||||
TASK [fail in always] **********************************************************
|
|
||||||
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "Failed as requested from task"}
|
|
||||||
|
|
||||||
TASK [assert] ******************************************************************
|
|
||||||
ok: [localhost] => {"changed": false, "msg": "all assertions passed"}
|
|
||||||
|
|
||||||
TASK [debug] *******************************************************************
|
|
||||||
ok: [localhost] => {
|
|
||||||
"msg": "TEST COMPLETE"
|
|
||||||
}
|
|
||||||
|
|
||||||
PLAY [block with includes] *****************************************************
|
|
||||||
|
|
||||||
TASK [setup] *******************************************************************
|
|
||||||
ok: [localhost]
|
|
||||||
|
|
||||||
TASK [include fail.yml in tasks] ***********************************************
|
|
||||||
included: /data/devel/ansible/test/integration/test_blocks/fail.yml for localhost
|
|
||||||
|
|
||||||
TASK [fail] ********************************************************************
|
|
||||||
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "failed from tasks"}
|
|
||||||
|
|
||||||
TASK [set_fact] ****************************************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"rescue_run_after_include_fail": true}, "changed": false}
|
|
||||||
|
|
||||||
TASK [include fail.yml in rescue] **********************************************
|
|
||||||
included: /data/devel/ansible/test/integration/test_blocks/fail.yml for localhost
|
|
||||||
|
|
||||||
TASK [fail] ********************************************************************
|
|
||||||
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "failed from rescue"}
|
|
||||||
|
|
||||||
TASK [set_fact] ****************************************************************
|
|
||||||
ok: [localhost] => {"ansible_facts": {"always_run_after_include_fail_in_rescue": true}, "changed": false}
|
|
||||||
|
|
||||||
PLAY RECAP *********************************************************************
|
|
||||||
localhost : ok=12 changed=0 unreachable=0 failed=3
|
|
||||||
|
|
Loading…
Reference in a new issue