summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-12-29 17:59:26 -0800
committerGitHub <noreply@github.com>2019-12-29 17:59:26 -0800
commita8206d6c6f03de1fde15c49f6fe9ddb1d0071b7a (patch)
tree11cee58a353eeb40c042e41714952e4ce6af8a4e /Rakefile
parent0778c7c2629e519b02842123fdbaa766911b79cd (diff)
parentd311508d5263467e6909a322544995c0e1ec451e (diff)
downloadchef-zero-a8206d6c6f03de1fde15c49f6fe9ddb1d0071b7a.tar.gz
Merge pull request #297 from chef/testing
Move testing to Buildkite
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 5e7f57b..3c80588 100644
--- a/Rakefile
+++ b/Rakefile
@@ -52,9 +52,11 @@ end
begin
require "chefstyle"
require "rubocop/rake_task"
+ desc "Run Chefstyle tests"
RuboCop::RakeTask.new(:style) do |task|
task.options += ["--display-cop-names", "--no-color"]
end
rescue LoadError
- puts "chefstyle/rubocop is not available. bundle install first to make sure all dependencies are installed."
+ puts "chefstyle gem is not installed. bundle install first to make sure all dependencies are installed."
end
+