Skip to content

Commit

Permalink
remove coveralls
Browse files Browse the repository at this point in the history
getting some errors with coveralls

not really paying attention to these metrics. removing this to simplify the gem dependencies
  • Loading branch information
kbrock committed May 26, 2021
1 parent a1a2398 commit 97cdc5d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 12 deletions.
1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

1 change: 0 additions & 1 deletion Gemfile
Expand Up @@ -3,7 +3,6 @@ source 'https://rubygems.org'
gemspec

gem "activerecord", "~> 6.0.3"
gem "coveralls", require: false
gem "mysql2"
gem "pg"
gem "sqlite3"
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/stefankroes/ancestry.svg?branch=master)](https://travis-ci.org/stefankroes/ancestry) [![Coverage Status](https://coveralls.io/repos/stefankroes/ancestry/badge.svg)](https://coveralls.io/r/stefankroes/ancestry) [![Gitter](https://badges.gitter.im/Join+Chat.svg)](https://gitter.im/stefankroes/ancestry?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Security](https://hakiri.io/github/stefankroes/ancestry/master.svg)](https://hakiri.io/github/stefankroes/ancestry/master)
[![Build Status](https://travis-ci.org/stefankroes/ancestry.svg?branch=master)](https://travis-ci.org/stefankroes/ancestry) [![Gitter](https://badges.gitter.im/Join+Chat.svg)](https://gitter.im/stefankroes/ancestry?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Security](https://hakiri.io/github/stefankroes/ancestry/master.svg)](https://hakiri.io/github/stefankroes/ancestry/master)

# Ancestry

Expand Down
1 change: 1 addition & 0 deletions ancestry.gemspec
Expand Up @@ -43,5 +43,6 @@ EOF
s.add_development_dependency 'appraisal'
s.add_development_dependency 'minitest'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'yard'
end
1 change: 0 additions & 1 deletion gemfiles/gemfile_52.gemfile
Expand Up @@ -3,7 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "5.2.4.5"
gem "coveralls", require: false
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
1 change: 0 additions & 1 deletion gemfiles/gemfile_60.gemfile
Expand Up @@ -3,7 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "6.0.3.6"
gem "coveralls", require: false
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
1 change: 0 additions & 1 deletion gemfiles/gemfile_61.gemfile
Expand Up @@ -3,7 +3,6 @@
source "https://rubygems.org"

gem "activerecord", "6.1.3.1"
gem "coveralls", require: false
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
12 changes: 6 additions & 6 deletions test/environment.rb
@@ -1,12 +1,12 @@
require 'rubygems'
require 'bundler/setup'

require 'simplecov'
require 'coveralls'
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
add_filter '/test/'
add_filter '/vendor/'
unless ENV["CI"]
require 'simplecov'
SimpleCov.start do
add_filter '/test/'
add_filter '/vendor/'
end
end

require 'active_support'
Expand Down

0 comments on commit 97cdc5d

Please sign in to comment.