github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/ci/cli/tasks/integration-windows.ps1 (about) 1 $ErrorActionPreference = "Stop" 2 3 . "$PSScriptRoot\integration-windows-setup.ps1" 4 5 echo "CF_INT_CLIENT_CREDENTIALS_TEST_MODE: $Env:CF_INT_CLIENT_CREDENTIALS_TEST_MODE" 6 7 cd $Env:GOPATH\src\code.cloudfoundry.org\cli 8 ginkgo.exe -r -nodes=16 -flakeAttempts=2 -slowSpecThreshold=60 -randomizeAllSpecs ./integration/shared/isolated ./integration/v6/isolated ./integration/v6/plugin ./integration/v6/push 9 if ($LASTEXITCODE -gt 0) 10 { 11 exit 1 12 } 13 ginkgo.exe -r -flakeAttempts=2 -slowSpecThreshold=60 -randomizeAllSpecs ./integration/shared/global ./integration/v6/global 14 if ($LASTEXITCODE -gt 0) 15 { 16 exit 1 17 }