From 394420f9525d3ebd48c93d61e2f02d4719a1a943 Mon Sep 17 00:00:00 2001 From: Quentin Champenois Date: Thu, 17 Oct 2024 20:16:58 +0200 Subject: [PATCH] ci: Remove codecov --- .github/workflows/ci_cd.yml | 3 +-- spec/spec_helper.rb | 6 ------ 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index a43177c..a27a47d 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -3,7 +3,6 @@ on: [push] env: CI: "true" - CODECOV: "false" jobs: lint: @@ -107,4 +106,4 @@ jobs: gem build *.gemspec gem push *.gem env: - GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}" \ No newline at end of file + GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}" diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 4dcba46..b08e48e 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,11 +1,5 @@ # frozen_string_literal: true -require "simplecov" -require "codecov" - -SimpleCov.start "rails" -SimpleCov.formatter = SimpleCov::Formatter::Codecov if ENV["CODECOV"] - require "decidim/dev" ENV["ENGINE_ROOT"] = File.dirname(__dir__)