diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2021-03-22 16:53:00 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2021-03-22 16:53:00 -0700 |
commit | 4b68aad9776cea7ec6927508df463261f40d2b0d (patch) | |
tree | 4bae3cef2b10a75cf6400fa4b32d544ff0969683 | |
parent | abea610088761b8006b2bc408f89e15ada64241a (diff) | |
download | chef-4b68aad9776cea7ec6927508df463261f40d2b0d.tar.gz |
bump the timeout up for gecode/depselector/berks installs
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rwxr-xr-x | tasks/bin/run_external_test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/bin/run_external_test b/tasks/bin/run_external_test index d9cdf272e9..43106b9f94 100755 --- a/tasks/bin/run_external_test +++ b/tasks/bin/run_external_test @@ -32,7 +32,7 @@ Dir.mktmpdir("chef-external-test") do |dir| Dir.chdir(dir) do shell_out!("git checkout #{git_thing}", live_stream: STDOUT) Bundler.with_unbundled_env do - shell_out!("bundle install --jobs=3 --retry=3", live_stream: STDOUT, env: env) + shell_out!("bundle install --jobs=3 --retry=3", live_stream: STDOUT, env: env, timeout: 3600) shell_out!("bundle exec #{ARGV.join(" ")}", live_stream: STDOUT, env: env) end end |