From ae766f46226c0fb7433dd9317b1f69b34c16533c Mon Sep 17 00:00:00 2001 From: Alexander Azarov Date: Sun, 9 Nov 2025 21:04:16 +0000 Subject: [PATCH] remove code coverage --- Gemfile | 1 - README.md | 2 +- codecov.yml | 15 --------------- test/test_helper.rb | 8 -------- 4 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 codecov.yml diff --git a/Gemfile b/Gemfile index 866813a..693092d 100644 --- a/Gemfile +++ b/Gemfile @@ -13,5 +13,4 @@ group :development do gem 'rake' gem 'rubocop' gem 'rubocop-minitest' - gem 'simplecov-cobertura' end diff --git a/README.md b/README.md index 0b84928..0a7824d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Legitbot ![](https://github.com/alaz/legitbot/workflows/build/badge.svg) ![](https://badge.fury.io/rb/legitbot.svg) ![codecov](https://codecov.io/gh/alaz/legitbot/branch/master/graph/badge.svg?token=LKtJ3E9VUl) +# Legitbot ![](https://github.com/alaz/legitbot/workflows/build/badge.svg) ![](https://badge.fury.io/rb/legitbot.svg) Ruby gem to make sure that an IP really belongs to a bot, typically a search engine. diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index 4fa84c5..0000000 --- a/codecov.yml +++ /dev/null @@ -1,15 +0,0 @@ -coverage: - status: - project: - default: - informational: true - only_pulls: true - threshold: 1% - patch: - default: - informational: true - only_pulls: true - threshold: 1% - -comment: - require_changes: true diff --git a/test/test_helper.rb b/test/test_helper.rb index 668f635..08c93af 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,13 +1,5 @@ # frozen_string_literal: true -require 'simplecov' -require 'simplecov-cobertura' -SimpleCov.start do - formatter SimpleCov::Formatter::CoberturaFormatter - add_filter %r{^/lib/rubocop/} - add_filter %r{^/test/} -end - require 'legitbot' require 'minitest/autorun'