mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 05:53:13 +00:00
15 lines
258 B
Ruby
15 lines
258 B
Ruby
require 'puppetlabs_spec_helper/rake_tasks'
|
|
|
|
require 'puppet-lint/tasks/puppet-lint'
|
|
PuppetLint.configuration.ignore_paths = ['vendor/**/*.pp']
|
|
|
|
task :default do
|
|
sh %{rake -T}
|
|
end
|
|
|
|
desc 'Run reasonably quick tests for CI'
|
|
task :ci => [
|
|
:lint,
|
|
:spec,
|
|
]
|