only run tests with sqlite

This commit is contained in:
Charlie Somerville
2014-04-10 21:35:48 +10:00
parent 32f98697a7
commit bb861052e8

View File

@@ -25,9 +25,7 @@ task :default => :test
desc 'Run mysql, mysql2, sqlite, and postgresql tests'
task :test do
tasks = defined?(JRUBY_VERSION) ?
%w(test_jdbcmysql test_jdbcsqlite3 test_jdbcpostgresql) :
%w(test_mysql test_mysql2 test_sqlite3 test_postgresql)
tasks = %w(test_sqlite3)
run_without_aborting(*tasks)
end