diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2021-03-22 16:54:28 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2021-03-22 16:54:28 -0700 |
commit | 1761518cadbf9482e3b55c6a79cdc67add71e9e7 (patch) | |
tree | c77324619f96bb9fe62f120501840ac9f7dac193 | |
parent | ea5d974e61cef2ce133844d43f1013f0337eedde (diff) | |
download | chef-1761518cadbf9482e3b55c6a79cdc67add71e9e7.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 e4d984e9ee..2d191adbb4 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 |