From a5f9b78fa5cf657733c8a4cfd01b2c0c151b4fce Mon Sep 17 00:00:00 2001 From: David Dollar Date: Sat, 13 Aug 2022 20:39:39 -0400 Subject: [PATCH] remove codeclimate --- .github/workflows/ci.yml | 2 -- Gemfile | 1 - README.md | 2 -- spec/spec_helper.rb | 10 ---------- 4 files changed, 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7225642c..cdbfa61d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,5 +32,3 @@ jobs: rubygems: latest # runs 'gem update --system' - name: Run test run: bundle exec rake spec - - name: Upload test coverage - run: bundle exec codeclimate-test-reporter diff --git a/Gemfile b/Gemfile index a84b9cb0..1316ac79 100644 --- a/Gemfile +++ b/Gemfile @@ -10,7 +10,6 @@ group :test do gem 'rspec', '~> 3.5' gem "simplecov", :require => false gem 'timecop' - gem "codeclimate-test-reporter", :require => false end group :development do diff --git a/README.md b/README.md index e3617e59..92fab56a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # Foreman [![CI](https://github.com/ddollar/foreman/actions/workflows/ci.yml/badge.svg)](https://github.com/ddollar/foreman/actions/workflows/ci.yml) -[![Code Climate](https://codeclimate.com/github/ddollar/foreman.svg)](https://codeclimate.com/github/ddollar/foreman) -[![Inline docs](http://inch-ci.org/github/ddollar/foreman.svg?branch=master)](http://inch-ci.org/github/ddollar/foreman) Manage Procfile-based applications diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 32ec21ca..2934458a 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,13 +1,3 @@ -# it throws following message: -# W, [2018-02-06T18:16:06.360071 #72025] WARN -- : This usage of the Code Climate Test Reporter is now deprecated. Since version -# 1.0, we now require you to run `SimpleCov` in your test/spec helper, and then -# run the provided `codeclimate-test-reporter` binary separately to report your -# results to Code Climate. -# -# More information here: https://github.com/codeclimate/ruby-test-reporter/blob/master/README.md -# require "codeclimate-test-reporter" -# CodeClimate::TestReporter.start - require "simplecov" SimpleCov.start do add_filter "/spec/"