summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Powell <powell@progress.com>2023-04-10 15:47:28 -0400
committerThomas Powell <powell@progress.com>2023-04-10 15:47:28 -0400
commit836318173f6d822f80480498f7e963eb465a0ba5 (patch)
tree3ae2ff9806de55234beedeaa3735f973397788cf
parent886d36b7754af44146d4dbcdcc74bf05534845e8 (diff)
downloadchef-836318173f6d822f80480498f7e963eb465a0ba5.tar.gz
WinRM move
Signed-off-by: Thomas Powell <powell@progress.com>
-rw-r--r--omnibus/omnibus-test.ps17
1 files changed, 3 insertions, 4 deletions
diff --git a/omnibus/omnibus-test.ps1 b/omnibus/omnibus-test.ps1
index 163607c712..4bc4075bc4 100644
--- a/omnibus/omnibus-test.ps1
+++ b/omnibus/omnibus-test.ps1
@@ -112,12 +112,13 @@ $Env:FORCE_FFI_YAJL = "ext"
# accept license
$Env:CHEF_LICENSE = "accept-no-persist"
+bundle -V
+If ($lastexitcode -ne 0) { Throw $lastexitcode }
+
# some tests need winrm configured
winrm quickconfig -quiet
If ($lastexitcode -ne 0) { Throw $lastexitcode }
-bundle -V
-If ($lastexitcode -ne 0) { Throw $lastexitcode }
# buildkite changes the casing of the Path variable to PATH
# It is not clear how or where that happens, but it breaks the choco
@@ -142,8 +143,6 @@ If ($lastexitcode -ne 0) { $exit = 1 }
Write-Output "Last exit code: $lastexitcode"
Write-Output ""
-git diff # what has changed
-
bundle exec rspec -f progress --profile -- ./spec/integration
If ($lastexitcode -ne 0) { $exit = 1 }
Write-Output "Last exit code: $lastexitcode"