diff options
author | Jay Mundrawala <jdmundrawala@gmail.com> | 2016-02-25 12:06:54 -0800 |
---|---|---|
committer | Jay Mundrawala <jdmundrawala@gmail.com> | 2016-02-25 16:09:51 -0800 |
commit | c3b1ebd844a2a5dac53f40fed8c94aae6d0ae5e7 (patch) | |
tree | 44ab6855d2921df7fbc7b91e01bf72e166abfb2e /acceptance/fips | |
parent | f2e5940e69f46e2e081d68e2f9ff837671902f5f (diff) | |
download | chef-c3b1ebd844a2a5dac53f40fed8c94aae6d0ae5e7.tar.gz |
bump timeout for for fips acceptance tests
Windows can be a bit slow
Diffstat (limited to 'acceptance/fips')
-rw-r--r-- | acceptance/fips/test/integration/fips/serverspec/fips_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb b/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb index 3076c68f67..f7b8010232 100644 --- a/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb +++ b/acceptance/fips/test/integration/fips/serverspec/fips_spec.rb @@ -30,9 +30,9 @@ describe "Chef Fips Specs" do Bundler.with_clean_env do ruby_cmd = Mixlib::ShellOut.new( "bundle exec rspec -t ~requires_git spec/unit spec/functional", :env => { "PATH" => "#{ENV['PATH']}:#{path}", - "GEM_PATH" => nil, "GEM_CACHE" => nil, "GEM_HOME" => nil, - "CHEF_FIPS" => "1" }, - :live_stream => STDOUT, :cwd => chef_dir) + "GEM_PATH" => nil, "GEM_CACHE" => nil, "GEM_HOME" => nil, + "CHEF_FIPS" => "1" }, + :live_stream => STDOUT, :cwd => chef_dir, :timeout => 3600) expect { ruby_cmd.run_command.error! }.not_to raise_exception end end |