1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

View file

@ -20,7 +20,11 @@ rescue LoadError
puts "'drb/unix' is not available" puts "'drb/unix' is not available"
end 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 'active_support/testing/autorun'
require 'abstract_controller' require 'abstract_controller'