remove simplecov since we now have coverage reporting on Code Climate

This commit is contained in:
Reinier Balt 2013-09-22 19:29:30 +02:00
parent 067db90d58
commit 07a3962d7d
3 changed files with 7 additions and 5 deletions

View file

@ -57,7 +57,6 @@ group :test do
gem "mocha", :require => false
gem "aruba", git: 'https://github.com/cucumber/aruba', :require => false # need 0.5.4 for piping files; 0.5.3 is latest
gem "simplecov"
gem "timecop", "~> 0.6.2"
# Note that > 2.14 has problems, see:

View file

@ -3,8 +3,10 @@
# newer version of cucumber-rails. Consider adding your own code to a new file
# instead of editing this one. Cucumber will automatically load all features/**/*.rb
# files.
require 'simplecov'
SimpleCov.start 'rails'
# test coverage from codeclimate
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
require 'cucumber/rails'
require 'aruba/cucumber'

View file

@ -1,5 +1,6 @@
require 'simplecov'
SimpleCov.start 'rails'
# test coverage from codeclimate
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
ENV["RAILS_ENV"] = "test"
require 'test/unit'