Merge branch 'cleanup-forgotten-lines' into 'master'

Cleanup forgotten lines

The `coveralls` gem was unused and thus removed in 7a2f25a. I've forgotten some lines in that MR

See merge request !5025
This commit is contained in:
Robert Speicher 2016-06-30 18:41:12 +00:00
commit c73db50cc7
2 changed files with 0 additions and 10 deletions

View File

@ -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'

View File

@ -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__)