Fix broken Shippable
This commit is contained in:
parent
cdc56afe01
commit
bbe2903d63
2 changed files with 0 additions and 6 deletions
|
@ -15,7 +15,6 @@
|
||||||
- cmdout.stderr == ""
|
- cmdout.stderr == ""
|
||||||
- cmdout.stdout is search('GROUP INFORMATION')
|
- cmdout.stdout is search('GROUP INFORMATION')
|
||||||
- '"GROUP INFORMATION" in cmdout.stdout_lines'
|
- '"GROUP INFORMATION" in cmdout.stdout_lines'
|
||||||
- cmdout.warnings == []
|
|
||||||
|
|
||||||
- name: execute something nonexistent
|
- name: execute something nonexistent
|
||||||
win_command: bogus_command1234
|
win_command: bogus_command1234
|
||||||
|
@ -48,7 +47,6 @@
|
||||||
- cmdout.stderr is search('some error')
|
- cmdout.stderr is search('some error')
|
||||||
- cmdout.stdout == "some output \r\n"
|
- cmdout.stdout == "some output \r\n"
|
||||||
- cmdout.stdout_lines == ["some output "]
|
- cmdout.stdout_lines == ["some output "]
|
||||||
- cmdout.warnings == []
|
|
||||||
|
|
||||||
- name: ensure test file is absent
|
- name: ensure test file is absent
|
||||||
win_file:
|
win_file:
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
# - shellout.stderr == ""
|
# - shellout.stderr == ""
|
||||||
- shellout.stdout == "hello from Ansible\r\n"
|
- shellout.stdout == "hello from Ansible\r\n"
|
||||||
- shellout.stdout_lines == ["hello from Ansible"]
|
- shellout.stdout_lines == ["hello from Ansible"]
|
||||||
- shellout.warnings == []
|
|
||||||
|
|
||||||
- name: execute a powershell cmdlet with multi-line output
|
- name: execute a powershell cmdlet with multi-line output
|
||||||
win_shell: Write-Output "hello from Ansible"; Write-Output "another line"; Write-Output "yet another line"
|
win_shell: Write-Output "hello from Ansible"; Write-Output "another line"; Write-Output "yet another line"
|
||||||
|
@ -36,7 +35,6 @@
|
||||||
# - shellout.stderr == ""
|
# - shellout.stderr == ""
|
||||||
- shellout.stdout == "hello from Ansible\r\nanother line\r\nyet another line\r\n"
|
- shellout.stdout == "hello from Ansible\r\nanother line\r\nyet another line\r\n"
|
||||||
- shellout.stdout_lines == ["hello from Ansible","another line", "yet another line"]
|
- shellout.stdout_lines == ["hello from Ansible","another line", "yet another line"]
|
||||||
- shellout.warnings == []
|
|
||||||
|
|
||||||
- name: execute something nonexistent
|
- name: execute something nonexistent
|
||||||
win_shell: bogus_command1234
|
win_shell: bogus_command1234
|
||||||
|
@ -56,7 +54,6 @@
|
||||||
- shellout.stderr is search('not recognized')
|
- shellout.stderr is search('not recognized')
|
||||||
- shellout.stdout == ""
|
- shellout.stdout == ""
|
||||||
- shellout.stdout_lines == []
|
- shellout.stdout_lines == []
|
||||||
- shellout.warnings == []
|
|
||||||
|
|
||||||
- name: execute something with error output
|
- name: execute something with error output
|
||||||
win_shell: Write-Error "it broke"; Write-Output "some output"
|
win_shell: Write-Error "it broke"; Write-Output "some output"
|
||||||
|
@ -75,7 +72,6 @@
|
||||||
- shellout.stderr is search('it broke')
|
- shellout.stderr is search('it broke')
|
||||||
- shellout.stdout == "some output\r\n"
|
- shellout.stdout == "some output\r\n"
|
||||||
- shellout.stdout_lines == ["some output"]
|
- shellout.stdout_lines == ["some output"]
|
||||||
- shellout.warnings == []
|
|
||||||
|
|
||||||
- name: ensure test file is absent
|
- name: ensure test file is absent
|
||||||
win_file:
|
win_file:
|
||||||
|
|
Loading…
Reference in a new issue