From bbe2903d6344360fac38321468026ba9314bec25 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Wed, 1 Feb 2017 01:44:49 +0100 Subject: [PATCH] Fix broken Shippable --- test/integration/targets/win_command/tasks/main.yml | 2 -- test/integration/targets/win_shell/tasks/main.yml | 4 ---- 2 files changed, 6 deletions(-) diff --git a/test/integration/targets/win_command/tasks/main.yml b/test/integration/targets/win_command/tasks/main.yml index 31c172f714e..4c5ba95fca7 100644 --- a/test/integration/targets/win_command/tasks/main.yml +++ b/test/integration/targets/win_command/tasks/main.yml @@ -15,7 +15,6 @@ - cmdout.stderr == "" - cmdout.stdout is search('GROUP INFORMATION') - '"GROUP INFORMATION" in cmdout.stdout_lines' - - cmdout.warnings == [] - name: execute something nonexistent win_command: bogus_command1234 @@ -48,7 +47,6 @@ - cmdout.stderr is search('some error') - cmdout.stdout == "some output \r\n" - cmdout.stdout_lines == ["some output "] - - cmdout.warnings == [] - name: ensure test file is absent win_file: diff --git a/test/integration/targets/win_shell/tasks/main.yml b/test/integration/targets/win_shell/tasks/main.yml index 185662386d1..5e50b72eda2 100644 --- a/test/integration/targets/win_shell/tasks/main.yml +++ b/test/integration/targets/win_shell/tasks/main.yml @@ -16,7 +16,6 @@ # - shellout.stderr == "" - shellout.stdout == "hello from Ansible\r\n" - shellout.stdout_lines == ["hello from Ansible"] - - shellout.warnings == [] - 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" @@ -36,7 +35,6 @@ # - shellout.stderr == "" - 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.warnings == [] - name: execute something nonexistent win_shell: bogus_command1234 @@ -56,7 +54,6 @@ - shellout.stderr is search('not recognized') - shellout.stdout == "" - shellout.stdout_lines == [] - - shellout.warnings == [] - name: execute something with error output win_shell: Write-Error "it broke"; Write-Output "some output" @@ -75,7 +72,6 @@ - shellout.stderr is search('it broke') - shellout.stdout == "some output\r\n" - shellout.stdout_lines == ["some output"] - - shellout.warnings == [] - name: ensure test file is absent win_file: