From 11d68739cc935e8c2c22015993a6828e396782ce Mon Sep 17 00:00:00 2001 From: Stephan Renatus Date: Thu, 23 Jan 2014 11:29:42 +0100 Subject: [PATCH] add test-kitchen + kitchen-vagrant to Gemfile and make travis ignore these. --- .travis.yml | 1 + Gemfile | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 356e859..0831a55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,6 @@ rvm: - 2.0.0 before_script: - bundle exec berks install +bundler_args: --without integration script: - bundle exec strainer test diff --git a/Gemfile b/Gemfile index 840af0a..1211303 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,8 @@ gem "chefspec", "~> 3.0.2" gem "foodcritic", "~> 3.0.3" gem "strainer" gem "rubocop" + +group :integration do + gem "test-kitchen", "~> 1.1.1" + gem "kitchen-vagrant", "~> 0.14" +end