diff options
author | Varac <varac@leap.se> | 2017-06-14 14:21:57 +0200 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-06-14 14:21:57 +0200 |
commit | 395e5968227108a9510a251e3fb8b786387c9f13 (patch) | |
tree | b63ebc4186819f1e40b7029192308710a0a197a8 /files/puppet/modules/pixelated/Rakefile | |
parent | b2084d4738bb68389823f8ad25d821f30d7e4139 (diff) |
Remove pixelated from unstable
Diffstat (limited to 'files/puppet/modules/pixelated/Rakefile')
-rw-r--r-- | files/puppet/modules/pixelated/Rakefile | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/files/puppet/modules/pixelated/Rakefile b/files/puppet/modules/pixelated/Rakefile deleted file mode 100644 index 24277ce..0000000 --- a/files/puppet/modules/pixelated/Rakefile +++ /dev/null @@ -1,21 +0,0 @@ -require 'puppetlabs_spec_helper/rake_tasks' -require 'puppet-lint/tasks/puppet-lint' -PuppetLint.configuration.send('disable_80chars') -PuppetLint.configuration.send('disable_fileserver') -PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*"] - -desc "Validate manifests, templates, and ruby files" -task :validate do - Dir['manifests/**/*.pp'].each do |manifest| - sh "puppet parser validate --noop #{manifest}" - end - Dir['spec/**/*.rb','lib/**/*.rb'].each do |ruby_file| - sh "ruby -c #{ruby_file}" unless ruby_file =~ /spec\/fixtures/ - end - Dir['templates/**/*.erb'].each do |template| - sh "erb -P -x -T '-' #{template} | ruby -c" - end -end - - -task :test => [:lint, :syntax , :validate, :spec] |