From 422eca27eebb6ddf625170a84b0fccf0ce30f348 Mon Sep 17 00:00:00 2001 From: "Z.J. van de Weg" Date: Thu, 30 Jun 2016 19:20:36 +0200 Subject: [PATCH] Remove coveralls lines --- features/support/env.rb | 5 ----- spec/spec_helper.rb | 5 ----- 2 files changed, 10 deletions(-) diff --git a/features/support/env.rb b/features/support/env.rb index edc08cf098..ab3f0ca7ae 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -2,11 +2,6 @@ if ENV['SIMPLECOV'] require 'simplecov' end -if ENV['COVERALLS'] - require 'coveralls' - Coveralls.wear_merged! -end - ENV['RAILS_ENV'] = 'test' require './config/environment' require 'rspec/expectations' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index b43f38ef20..606da1b760 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,11 +3,6 @@ if ENV['SIMPLECOV'] SimpleCov.start :rails end -if ENV['COVERALLS'] - require 'coveralls' - Coveralls.wear_merged! -end - ENV["RAILS_ENV"] ||= 'test' require File.expand_path("../../config/environment", __FILE__)