summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2015-12-29 12:56:59 -0800
committerMatt Wrock <matt@mattwrock.com>2015-12-29 12:56:59 -0800
commitbfb2fa69ca136756d97629057efa0d6fd1d41b99 (patch)
tree34029d8ab89e0efb6dfee601e611f93cf825e386
parent2fe51bd960f870a8b906c04acd1ad6d8e53abed4 (diff)
downloadchef-kwspec.tar.gz
add knife-windows to external specskwspec
-rw-r--r--.travis.yml3
-rw-r--r--tasks/external_tests.rb3
2 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 78303d7591..078a20613a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -50,6 +50,9 @@ matrix:
- rvm: 2.2
env: "GEMFILE_MOD=\"gem 'chef-sugar'\""
script: bundle exec rake chef_sugar_spec
+ - rvm: 2.2
+ env: "GEMFILE_MOD=\"gem 'knife-windows', github: 'chef/knife-windows'\""
+ script: bundle exec rake knife_windows_spec
# Requires vagrant
# - rvm: 2.2
# cache:
diff --git a/tasks/external_tests.rb b/tasks/external_tests.rb
index 305088646c..69c0712a12 100644
--- a/tasks/external_tests.rb
+++ b/tasks/external_tests.rb
@@ -51,7 +51,8 @@ EXTERNAL_PROJECTS = {
"chefspec" => "rake",
"chef-rewind" => "rake spec",
"poise" => "rake spec",
- "halite" => "rake spec"
+ "halite" => "rake spec",
+ "knife-windows" => "rake unit_spec"
}
task :external_specs => EXTERNAL_PROJECTS.keys.map { |g| :"#{g.sub("-","_")}_spec" }