inspec/Rakefile

40 lines
766 B
Ruby
Raw Normal View History

2015-09-03 17:25:43 +00:00
#!/usr/bin/env rake
# encoding: utf-8
require 'rake/testtask'
2015-09-03 17:25:43 +00:00
require 'rubocop/rake_task'
# Rubocop
desc 'Run Rubocop lint checks'
task :rubocop do
RuboCop::RakeTask.new
end
# lint the project
desc 'Run robocop linter'
task lint: [:rubocop]
2015-09-03 17:25:43 +00:00
# run tests
task :default => :test
Rake::TestTask.new do |t|
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.warning = true
t.verbose = true
2015-09-03 18:35:23 +00:00
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
end
namespace :test do
task :isolated do
2015-09-03 18:35:23 +00:00
Dir.glob('test/**/*_test.rb').all? do |file|
sh(Gem.ruby, '-w', '-Ilib:test', file)
2015-09-03 18:35:23 +00:00
end or raise 'Failures'
end
task :integration do
2015-09-03 18:35:23 +00:00
tests = Dir['test/resource/*.rb']
return if tests.empty?
sh(Gem.ruby, 'test/docker.rb', *tests)
end
end