summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2016-02-03 14:59:11 -0500
committerJames Cammarata <jimi@sngx.net>2016-02-03 15:00:37 -0500
commit5466510edb902466790426686e8abc3e0979ea62 (patch)
tree77bf7b77a691ce8bc709507eb20c0550424cb497
parentf4bd3be71fb17360a91d7e1497776999d0baff78 (diff)
downloadansible-5466510edb902466790426686e8abc3e0979ea62.tar.gz
Removing .out file for integration tests and adding to .gitignore
-rw-r--r--.gitignore1
-rw-r--r--test/integration/block_test.out63
2 files changed, 1 insertions, 63 deletions
diff --git a/.gitignore b/.gitignore
index a684ea0553..2392614453 100644
--- a/.gitignore
+++ b/.gitignore
@@ -48,6 +48,7 @@ deb-build
credentials.yml
# test output
*.retry
+*.out
.coverage
.tox
results.xml
diff --git a/test/integration/block_test.out b/test/integration/block_test.out
deleted file mode 100644
index 7ba056ae58..0000000000
--- a/test/integration/block_test.out
+++ /dev/null
@@ -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
-