Maintenance: Drop obsolete use of orphaned coverage modules.

This commit is contained in:
Martin Gruner 2022-01-26 14:04:13 +01:00
parent b5b1c88b54
commit 2b78f5fff7
4 changed files with 0 additions and 54 deletions

3
.gitignore vendored
View file

@ -95,9 +95,6 @@
# Byebug # Byebug
/.byebug_history /.byebug_history
# SimpleCov
/coverage
# RDoc / YARD # RDoc / YARD
/doc /doc

View file

@ -177,11 +177,6 @@ group :development, :test do
# for testing Pundit authorisation policies in RSpec # for testing Pundit authorisation policies in RSpec
gem 'pundit-matchers' gem 'pundit-matchers'
# code coverage
gem 'coveralls', require: false
gem 'simplecov'
gem 'simplecov-rcov'
# UI tests w/ Selenium # UI tests w/ Selenium
gem 'capybara' gem 'capybara'
gem 'selenium-webdriver' gem 'selenium-webdriver'

View file

@ -159,12 +159,6 @@ GEM
concurrent-ruby (1.1.9) concurrent-ruby (1.1.9)
console (1.13.1) console (1.13.1)
fiber-local fiber-local
coveralls (0.7.1)
multi_json (~> 1.3)
rest-client
simplecov (>= 0.7)
term-ansicolor
thor
crack (0.4.5) crack (0.4.5)
rexml rexml
crass (1.0.6) crass (1.0.6)
@ -181,7 +175,6 @@ GEM
activesupport (>= 4.2) activesupport (>= 4.2)
diff-lcs (1.4.4) diff-lcs (1.4.4)
diffy (3.4.0) diffy (3.4.0)
docile (1.4.0)
domain_name (0.5.20190701) domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0) unf (>= 0.0.5, < 1.0.0)
doorkeeper (5.5.4) doorkeeper (5.5.4)
@ -561,14 +554,6 @@ GEM
activesupport (>= 5.2.0) activesupport (>= 5.2.0)
simple_oauth (0.3.1) simple_oauth (0.3.1)
simple_po_parser (1.1.5) simple_po_parser (1.1.5)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov-rcov (0.2.3)
simplecov (>= 0.4.1)
simplecov_json_formatter (0.1.3)
slack-notifier (2.4.0) slack-notifier (2.4.0)
slack-ruby-client (1.0.0) slack-ruby-client (1.0.0)
faraday (>= 1.0) faraday (>= 1.0)
@ -589,21 +574,16 @@ GEM
actionpack (>= 5.2) actionpack (>= 5.2)
activesupport (>= 5.2) activesupport (>= 5.2)
sprockets (>= 3.0.0) sprockets (>= 3.0.0)
sync (0.5.0)
tcr (0.2.2) tcr (0.2.2)
telegramAPI (1.4.2) telegramAPI (1.4.2)
rest-client (~> 2.0, >= 2.0.2) rest-client (~> 2.0, >= 2.0.2)
telephone_number (1.4.13) telephone_number (1.4.13)
term-ansicolor (1.7.1)
tins (~> 1.0)
test-unit (3.5.3) test-unit (3.5.3)
power_assert power_assert
thor (1.1.0) thor (1.1.0)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.10) tilt (2.0.10)
timers (4.3.3) timers (4.3.3)
tins (1.29.1)
sync
twilio-ruby (5.63.0) twilio-ruby (5.63.0)
faraday (>= 0.9, < 2.0) faraday (>= 0.9, < 2.0)
jwt (>= 1.5, <= 2.5) jwt (>= 1.5, <= 2.5)
@ -681,7 +661,6 @@ DEPENDENCIES
coffee-rails coffee-rails
coffeelint coffeelint
composite_primary_keys composite_primary_keys
coveralls
csv csv
daemons daemons
dalli dalli
@ -752,8 +731,6 @@ DEPENDENCIES
sassc-rails sassc-rails
selenium-webdriver selenium-webdriver
shoulda-matchers shoulda-matchers
simplecov
simplecov-rcov
slack-notifier slack-notifier
slack-ruby-client slack-ruby-client
spring spring

View file

@ -1,23 +0,0 @@
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
return if !ENV['TRAVIS_CI']
require 'simplecov'
require 'simplecov-rcov'
require 'coveralls'
Coveralls.wear!
class ActiveSupport::TestCase
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
#
# Note: You'll currently still have to declare fixtures explicitly in integration tests
# -- they do not yet inherit this setting
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::RcovFormatter,
Coveralls::SimpleCov::Formatter
])
SimpleCov.start
fixtures :all
end