-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
executable file
·60 lines (52 loc) · 1.41 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env rake
# Style tests. Rubocop and Foodcritic
namespace :style do
begin
require 'rubocop/rake_task'
desc 'Run Ruby style checks'
RuboCop::RakeTask.new(:ruby)
rescue LoadError
puts '>>>>> Rubocop gem not loaded, omitting tasks' unless ENV['CI']
end
begin
desc 'Run Chef style checks'
FoodCritic::Rake::LintTask.new(:chef) do |t|
t.options = {
fail_tags: ['any'],
exclude_paths: ['spec'],
}
end
rescue LoadError
puts '>>>>> foodcritic gem not loaded, omitting tasks' unless ENV['CI']
end
end
desc 'Run all style checks'
task style: ['style:chef', 'style:ruby']
# Integration tests. Kitchen.ci
namespace :integration do
begin
require 'kitchen/rake_tasks'
desc 'Run kitchen integration tests'
Kitchen::RakeTasks.new
rescue LoadError, Kitchen::ClientError
puts '>>>>> Kitchen gem not loaded, omitting tasks' unless ENV['CI']
end
end
# Unit tests with rspec/chefspec
namespace :unit do
begin
require 'rspec/core/rake_task'
desc 'Run unit tests with RSpec/ChefSpec'
RSpec::Core::RakeTask.new(:rspec) do |t|
t.rspec_opts = [].tap do |a|
a.push('--color')
a.push('--format progress')
end.join(' ')
end
rescue LoadError
puts '>>>>> rspec gem not loaded, omitting tasks' unless ENV['CI']
end
end
task unit: ['unit:rspec']
# Default
task default: ['style', 'unit', 'integration:kitchen:all']