Skip to content

Commit

Permalink
code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Jan 27, 2015
1 parent 5ee3dc8 commit 820d000
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Build Status](https://travis-ci.org/hstove/aqui.svg?branch=master)](https://travis-ci.org/hstove/aqui)
[![Code Climate](https://codeclimate.com/github/hstove/aqui.png)](https://codeclimate.com/github/hstove/aqui)
[![Coverage Status](https://coveralls.io/repos/hstove/aqui/badge.svg)](https://coveralls.io/r/hstove/aqui)

A gem for making sure some code is running.

Expand Down
11 changes: 6 additions & 5 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
require 'simplecov'
# require 'coveralls'
SimpleCov.start
require 'coveralls'
# require 'codeclimate-test-reporter'
require 'bundler'
Bundler.require(:default, :development)

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
# Coveralls::SimpleCov::Formatter,
Coveralls::SimpleCov::Formatter,
# CodeClimate::TestReporter::Formatter
]
# SimpleCov.start do
# add_filter "/spec/"
# end
SimpleCov.start do
add_filter "/spec/"
end

# The `.rspec` file also contains a few flags that are not defaults but that
# users commonly want.
Expand Down

0 comments on commit 820d000

Please sign in to comment.