-
Notifications
You must be signed in to change notification settings - Fork 16
/
Rakefile
64 lines (54 loc) · 1.28 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
61
62
63
64
require 'rubygems' if RUBY_VERSION < '1.9.0'
# require 'rubocop/rake_task'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
# require 'metadata-json-lint/rake_task'
# RuboCop::RakeTask.new
exclude_paths = [
'modules/**/*',
'pkg/**/*',
'spec/**/*',
'vendor/**/*'
]
# Puppet-Lint 1.1.0
Rake::Task[:lint].clear
PuppetLint::RakeTask.new :lint do |config|
config.ignore_paths = exclude_paths
config.disable_checks = %w(class_inherits_from_params_class 80chars)
config.fail_on_warnings = true
end
# Puppet-Lint 1.1.0 as well ...
PuppetLint.configuration.send('disable_140chars')
PuppetLint.configuration.relative = true
PuppetSyntax.exclude_paths = exclude_paths
Rake::Task[:default].prerequisites.clear
task :default => :all
desc 'Run acceptance tests'
RSpec::Core::RakeTask.new(:acceptance) do |t|
t.pattern = 'spec/acceptance'
end
desc 'Run RuboCop'
task :rubocop do
sh 'rubocop'
end
desc 'Clean up modules / pkg'
task :clean do
sh 'rm -rf modules pkg spec/fixtures'
end
task :success do
puts "\n\e[32mAll tests passing...\e[0m"
end
desc 'Run all'
task :all => [
:clean,
:test,
:success
]
desc 'Run rubocop, syntax, lint, and spec tests'
task :test => [
:rubocop,
:syntax,
:lint,
:spec
]