summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn <john.mccrae@progress.com>2023-04-20 14:42:13 -0700
committerJohn <john.mccrae@progress.com>2023-04-20 14:42:13 -0700
commitab0fc56e926f50a537ac087de91419b737782d34 (patch)
tree8370e90d6259bb677498843e7dd05ea27147ae04
parent121fddbc65c71a26dd27719136dcf9d06eb492d5 (diff)
downloadchef-ab0fc56e926f50a537ac087de91419b737782d34.tar.gz
Tests are timing out, adding tracing
Signed-off-by: John <john.mccrae@progress.com>
-rw-r--r--habitat/plan.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1
index 92fedfbc60..4dced59006 100644
--- a/habitat/plan.ps1
+++ b/habitat/plan.ps1
@@ -94,10 +94,10 @@ function Invoke-Build {
}
}
Write-BuildLine " ** Running the chef project's 'rake install' to install the path-based gems so they look like any other installed gem."
- bundle exec rake install:local # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler
+ bundle exec rake install:local --trace=stdout # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler
if (-not $?) {
Write-Warning " -- That didn't work. Let's try again."
- bundle exec rake install:local # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler
+ bundle exec rake install:local --trace=stdout # this needs to be 'bundle exec'd because a Rakefile makes reference to Bundler
if (-not $?) { throw "unable to install the gems that live in directories within this repo" }
}
} finally {