From 1fa278c03e3ddfa5f7bc0c26f0e7569191e5d879 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Fri, 3 May 2024 08:10:54 +0200 Subject: [PATCH] Remove codecov and code-climate-test-reporter codecov is no longer configured, is not free, and is currently blocking running tests in CI --- README.md | 6 ------ spec/spec_helper.rb | 8 +------- threema.gemspec | 2 -- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/README.md b/README.md index a081da0..83d8c0f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,5 @@ # threema -[![Build Status](https://travis-ci.org/thorsteneckel/threema.svg?branch=master)](https://travis-ci.org/thorsteneckel/threema) -[![codecov](https://codecov.io/gh/thorsteneckel/threema/branch/master/graph/badge.svg)](https://codecov.io/gh/thorsteneckel/threema) -[![Code Climate](https://codeclimate.com/github/thorsteneckel/threema/badges/gpa.svg)](https://codeclimate.com/github/thorsteneckel/threema) -[![Gem](https://img.shields.io/gem/v/threema.svg?maxAge=2592000)]() - - This gem provides access to the Threema Gateway API. ## Installation diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 055d526..347d6b1 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -10,19 +10,13 @@ require 'pry' require 'simplecov' -require 'codecov' -require 'codeclimate-test-reporter' SimpleCov.start do # Don't get coverage on the test cases themselves. add_filter '/spec/' add_filter '/test/' - # Codecov doesn't automatically ignore vendored files. - add_filter '/vendor/' end -SimpleCov.formatter = SimpleCov::Formatter::Codecov - -CodeClimate::TestReporter.start +SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter require 'threema' diff --git a/threema.gemspec b/threema.gemspec index 376a73d..9f38b4b 100644 --- a/threema.gemspec +++ b/threema.gemspec @@ -29,8 +29,6 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'rbnacl' spec.add_development_dependency 'bundler' - spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.6' - spec.add_development_dependency 'codecov' spec.add_development_dependency 'factory_bot' spec.add_development_dependency 'fakefs' spec.add_development_dependency 'pry'