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
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,11 @@ rescue LoadError
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'