1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# frozen_string_literal: true
#require "bundler"
#Bundler.setup
require 'rake'
require 'rake/testtask'
namespace :display do
task :notice do
puts
puts "To run tests you must supply the adapter, see rake -T for more information."
puts
end
end
task default: ["display:notice"]
ADAPTERS = %w(
mysql2
mysql2_makara
mysql2spatial
jdbcmysql
jdbcsqlite3
jdbcpostgresql
postgresql
postgresql_makara
postgis
makara_postgis
sqlite3
spatialite
seamless_database_pool
).freeze
ADAPTERS.each do |adapter|
namespace :test do
desc "Runs #{adapter} database tests."
Rake::TestTask.new(adapter) do |t|
# FactoryBot has an issue with warnings, so turn off, so noisy
# t.warning = true
t.test_files = FileList["test/adapters/#{adapter}.rb", "test/*_test.rb", "test/active_record/*_test.rb", "test/#{adapter}/**/*_test.rb"]
end
task adapter
end
end
begin
require 'rcov/rcovtask'
adapter = ENV['ARE_DB']
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = ["test/adapters/#{adapter}.rb", "test/*_test.rb", "test/#{adapter}/**/*_test.rb"]
test.verbose = true
end
rescue LoadError
task :rcov do
abort "RCov is not available. In order to run rcov, you must: sudo gem install rcov"
end
end
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "activerecord-import #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
require 'rubocop/rake_task'
RuboCop::RakeTask.new
|