Merge "Removing unused files from repository"

This commit is contained in:
Jenkins 2014-08-07 19:30:00 +00:00 committed by Gerrit Code Review
commit 3cc67a6e3e
2 changed files with 0 additions and 54 deletions

View File

@ -1,7 +0,0 @@
language: ruby
rvm:
- 1.9.3
- 2.0.0
bundler_args: --without integration
script:
- bundle exec rake travis

View File

@ -1,47 +0,0 @@
#!/usr/bin/env rake
# Style tests. Rubocop and Foodcritic
namespace :style do
begin
require 'rubocop/rake_task'
desc 'Run Ruby style checks'
Rubocop::RakeTask.new(:ruby)
rescue LoadError
puts '>>>>> Rubocop gem not loaded, omitting tasks' unless ENV['CI']
end
begin
require 'foodcritic'
desc 'Run Chef style checks'
FoodCritic::Rake::LintTask.new(:chef) do |t|
t.options = {
fail_tags: ['any'],
tags: ['~FC003']
}
end
rescue LoadError
puts '>>>>> foodcritic gem not loaded, omitting tasks' unless ENV['CI']
end
end
desc 'Run all style checks'
task style: ['style:chef', 'style:ruby']
# Integration tests. Kitchen.ci
namespace :integration do
begin
require 'kitchen/rake_tasks'
desc 'Run kitchen integration tests'
Kitchen::RakeTasks.new
rescue LoadError
puts '>>>>> Kitchen gem not loaded, omitting tasks' unless ENV['CI']
end
end
desc 'Run all tests on Travis'
task travis: ['style']
# Default
task default: ['style', 'integration:kitchen:all']