This change adds the necessary tooling for doing proper testing of our home-grown Puppet modules. It also fixes a couple of issues in lma_logging_analytics/metadata.json file that were never found before. Change-Id: I807cc5db59dbb4e2278919202e7748014e3475af
26 lines
698 B
Ruby
26 lines
698 B
Ruby
require 'puppetlabs_spec_helper/rake_tasks'
|
|
require 'puppet-lint/tasks/puppet-lint'
|
|
require 'puppet-syntax/tasks/puppet-syntax'
|
|
require 'metadata-json-lint/rake_task'
|
|
|
|
PuppetLint.configuration.fail_on_warnings = true
|
|
PuppetLint.configuration.send('disable_80chars')
|
|
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
|
|
PuppetLint.configuration.send('disable_class_parameter_defaults')
|
|
|
|
exclude_paths = [
|
|
"pkg/**/*",
|
|
"vendor/**/*",
|
|
"spec/**/*",
|
|
]
|
|
PuppetLint.configuration.ignore_paths = exclude_paths
|
|
PuppetSyntax.exclude_paths = exclude_paths
|
|
|
|
desc "Run metadata_lint, lint, syntax, and spec tests."
|
|
task :test => [
|
|
:metadata_lint,
|
|
:lint,
|
|
:syntax,
|
|
:spec,
|
|
]
|