forked from puppetlabs-toy-chest/puppetlabs-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
45 lines (35 loc) · 1.01 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
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet/vendor/semantic/lib/semantic'
begin
require 'puppet_blacksmith/rake_tasks'
rescue LoadError
end
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new
rescue LoadError
end
require 'puppet-lint/tasks/puppet-lint'
ignore_paths = ['contrib/**/*.pp', 'examples/**/*.pp', 'spec/**/*.pp', 'pkg/**/*.pp', 'vendor/**/*']
# necessary to ensure default :lint doesn't exist, else ignore_paths won't work
Rake::Task[:lint].clear
PuppetLint.configuration.relative = true
PuppetLint.configuration.disable_class_inherits_from_params_class
PuppetLint::RakeTask.new :lint do |config|
config.ignore_paths = ignore_paths
end
PuppetSyntax.exclude_paths = ignore_paths
desc "Run acceptance tests"
RSpec::Core::RakeTask.new(:acceptance) do |t|
t.pattern = 'spec/acceptance'
end
task :metadata do
sh "bundle exec metadata-json-lint metadata.json"
end
desc "Run lint and spec tests and check metadata format"
task :test => [
:syntax,
:lint,
:spec,
:metadata,
]