do not run in parallel on travis

This commit is contained in:
Aaron Patterson 2016-01-12 15:55:47 -08:00
parent b64b754510
commit 7b7b12f598

@ -20,7 +20,11 @@
puts "'drb/unix' is not available"
end
PROCESS_COUNT = (ENV['N'] || 4).to_i
if ENV['TRAVIS']
PROCESS_COUNT = 0
else
PROCESS_COUNT = (ENV['N'] || 4).to_i
end
require 'active_support/testing/autorun'
require 'abstract_controller'