mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
enabled good parsing tests in parsing target
fixed test_good_parsing role added raw duplicate parameters to test_good_parsing
This commit is contained in:
parent
8793308c39
commit
44aef347cb
2 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,7 @@ parsing:
|
||||||
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario3; [ $$? -eq 4 ]
|
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario3; [ $$? -eq 4 ]
|
||||||
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario4; [ $$? -eq 4 ]
|
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario4; [ $$? -eq 4 ]
|
||||||
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario5; [ $$? -eq 4 ]
|
#ansible-playbook bad_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -vvv $(TEST_FLAGS) --tags prepare,common,scenario5; [ $$? -eq 4 ]
|
||||||
#ansible-playbook good_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
ansible-playbook good_parsing.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)
|
||||||
echo "skipping for now..."
|
echo "skipping for now..."
|
||||||
|
|
||||||
includes:
|
includes:
|
||||||
|
|
|
@ -97,6 +97,9 @@
|
||||||
that:
|
that:
|
||||||
result.cmd == "echo foo=bar foo=bar"
|
result.cmd == "echo foo=bar foo=bar"
|
||||||
|
|
||||||
|
- name: raw duplicates, noop
|
||||||
|
raw: /bin/true foo=bar foo=bar
|
||||||
|
|
||||||
- name: multi-line inline shell commands (should use script module but hey) are a thing
|
- name: multi-line inline shell commands (should use script module but hey) are a thing
|
||||||
shell: "{{ multi_line }}"
|
shell: "{{ multi_line }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
Loading…
Reference in a new issue