Files
fuel-plugin-elasticsearch-k…/deployment_scripts/puppet/modules/lma_logging_analytics/Rakefile
Simon Pasquier 33e52564ed Bootstrap testing of Puppet modules
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
2015-08-14 10:23:52 +02:00

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,
]