summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-12-29 17:58:53 -0800
committerTim Smith <tsmith84@gmail.com>2019-12-29 17:58:53 -0800
commitd311508d5263467e6909a322544995c0e1ec451e (patch)
tree11cee58a353eeb40c042e41714952e4ce6af8a4e /Rakefile
parent0778c7c2629e519b02842123fdbaa766911b79cd (diff)
downloadchef-zero-d311508d5263467e6909a322544995c0e1ec451e.tar.gz
Move testing to Buildkite
Specs and lint only for now Signed-off-by: Tim Smith <tsmith@chef.io>
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
+