1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Disable coveralls on travis with jruby

Causes an error

Coveralls encountered an exception:
Java::JavaLang::OutOfMemoryError
Java heap space
This commit is contained in:
Carlos Sanchez 2013-11-28 14:24:00 +01:00
parent 1251e89e61
commit 6b73e95f8a

View file

@ -55,6 +55,8 @@ Fog::Rake::TestTask.new
namespace :test do
mock = 'true' || ENV['FOG_MOCK']
task :travis do
# jruby coveralls causes an OOM in travis
ENV['COVERAGE'] = 'false' if RUBY_PLATFORM == 'java'
sh("export FOG_MOCK=#{mock} && bundle exec shindont")
end
task :vsphere do