Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
5680a9fa
Commit
5680a9fa
authored
9 years ago
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed redundant tests, adjusted makefile expected count
parent
4ba5ebd1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
17 deletions
+1
-17
test/integration/Makefile
+1
-1
test/integration/no_log_local.yml
+0
-16
No files found.
test/integration/Makefile
View file @
5680a9fa
...
...
@@ -193,5 +193,5 @@ test_lookup_paths:
no_log
:
# This test expects 7 loggable vars and 0 non loggable ones, if either mismatches it fails, run the ansible-playbook command to debug
[
"
$$
(ansible-playbook no_log_local.yml -i
$(INVENTORY)
-vvvvv | awk -e 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "
%d/%d
", logme, nolog; }')"
=
"
7
/0"
]
[
"
$$
(ansible-playbook no_log_local.yml -i
$(INVENTORY)
-vvvvv | awk -e 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "
%d/%d
", logme, nolog; }')"
=
"
6
/0"
]
This diff is collapsed.
Click to expand it.
test/integration/no_log_local.yml
View file @
5680a9fa
...
...
@@ -7,10 +7,6 @@
-
name
:
args should be logged in the absence of no_log
shell
:
echo "LOG_ME_TASK_SUCCEEDED"
-
name
:
item args/results should be logged in the absence of no_log
shell
:
echo {{ item }}
with_items
:
[
"
LOG_ME_ITEM_SUCCEEDED"
]
-
name
:
failed args should be logged in the absence of no_log
shell
:
echo "LOG_ME_TASK_FAILED"
failed_when
:
true
...
...
@@ -27,24 +23,12 @@
shell
:
echo "DO_NOT_LOG_TASK_SUCCEEDED"
no_log
:
true
-
name
:
item args should be suppressed with no_log
shell
:
echo {{ item }}
no_log
:
true
with_items
:
[
"
DO_NOT_LOG_ITEM_SUCCEEDED"
]
-
name
:
failed args should not be logged when task-level no_log set
shell
:
echo "DO_NOT_LOG_TASK_FAILED"
no_log
:
true
failed_when
:
true
ignore_errors
:
true
-
name
:
failed item args should be suppressed with no_log
shell
:
echo {{ item }}
no_log
:
true
with_items
:
[
"
DO_NOT_LOG_ITEM_FAILED"
]
failed_when
:
true
ignore_errors
:
true
-
name
:
skipped task args should be suppressed with no_log
shell
:
echo "DO_NOT_LOG_TASK_SKIPPED"
no_log
:
true
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment