Skip to content

Commit

Permalink
Switch to Codecov for coverage info
Browse files Browse the repository at this point in the history
  • Loading branch information
Mange committed Feb 22, 2016
1 parent 1737667 commit 4fe0a5d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Expand Up @@ -12,7 +12,3 @@ rvm:
cache: bundler
bundler_args: --without guard
script: "rake"

env:
# Setup Coveralls
secure: "D1Uvi+a7W89k91zXVVwuuvv8O8qbDdyJ4g9i+3bGaSYySHxD8YuuG1QiQ4G/S2KLp/r3VPRpa8Wb1mSwb81tEBzXpzoZC7zSvgntPxRPhMg4zpodZ0O0AkK8/t1yZSkIe0V5sejFOQ1a5LJa3OorKBBjrqM5kPDOygTXtO3bQ6E="
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -2,7 +2,7 @@ source 'https://rubygems.org'
gemspec

# Added here so it does not show up on the Gemspec; I only want it for CI builds
gem 'coveralls', group: :test, require: nil
gem 'codecov', group: :test, require: false

group :guard do
gem 'guard'
Expand Down
7 changes: 5 additions & 2 deletions spec/spec_helper.rb
Expand Up @@ -2,8 +2,11 @@
require 'webmock/rspec'

if ENV['CI']
require 'coveralls'
Coveralls.wear!
require 'simplecov'
SimpleCov.start

require 'codecov'
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end

$: << File.dirname(__FILE__) + '/../lib'
Expand Down

0 comments on commit 4fe0a5d

Please sign in to comment.