From d46e498333a82dba5aee070cad23dc5b34b19a24 Mon Sep 17 00:00:00 2001 From: Noah Kantrowitz Date: Fri, 19 Oct 2018 12:24:50 -0700 Subject: [PATCH] Switch to concurrent Kitchen to get the test times down so maybe they pass. --- .travis.yml | 2 +- Gemfile | 2 +- Rakefile | 1 + test/gemfiles/master.gemfile | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e3abcaa..67d30a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ dist: trusty -sudo: required +sudo: false cache: bundler language: ruby env: diff --git a/Gemfile b/Gemfile index 0640ad1..9e743bc 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,7 @@ def dev_gem(name, path: File.join('..', name), github: nil) end end -dev_gem 'halite' +dev_gem 'halite', github: true dev_gem 'poise' dev_gem 'poise-archive' dev_gem 'poise-boiler' diff --git a/Rakefile b/Rakefile index d2b12d0..cb942ad 100644 --- a/Rakefile +++ b/Rakefile @@ -14,4 +14,5 @@ # limitations under the License. # +ENV['KITCHEN_CONCURRENCY'] = '10' require 'poise_boiler/rakefile' diff --git a/test/gemfiles/master.gemfile b/test/gemfiles/master.gemfile index 18d3604..15f3464 100644 --- a/test/gemfiles/master.gemfile +++ b/test/gemfiles/master.gemfile @@ -20,7 +20,7 @@ gem 'chef', git: 'https://github.com/chef/chef.git' gem 'chefspec', git: 'https://github.com/sethvargo/chefspec.git' gem 'fauxhai', git: 'https://github.com/customink/fauxhai.git' gem 'foodcritic', git: 'https://github.com/foodcritic/foodcritic.git' -gem 'halite', git: 'https://github.com/poise/halite.git' +# gem 'halite', git: 'https://github.com/poise/halite.git' gem 'ohai', git: 'https://github.com/chef/ohai.git' gem 'poise', git: 'https://github.com/poise/poise.git' gem 'poise-archive', git: 'https://github.com/poise/poise-archive.git'