Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .simplecov

This file was deleted.

4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ group :development, :test do
gem "rspec", "~> 3.13.0"
gem "standard"
gem "standard-performance"
gem "simplecov", "~> 0.22.0"
gem "simplecov-cobertura", "~> 3.0"
gem "simplecov", "~> 1.1.0"
gem "simplecov-cobertura", "~> 4.0"
gem "steep", "~> 2.0"
gem "timecop", "~> 0.9.10"
end
Expand Down
16 changes: 5 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ GEM
irb (~> 1.10)
reline (>= 0.3.8)
diff-lcs (1.6.2)
docile (1.4.1)
erb (6.0.4)
ffi (1.17.4)
fileutils (1.8.0)
Expand Down Expand Up @@ -126,15 +125,10 @@ GEM
rubocop-ast (>= 1.47.1, < 2.0)
ruby-progressbar (1.13.0)
securerandom (0.4.1)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-cobertura (3.1.0)
simplecov (1.1.1)
simplecov-cobertura (4.0.0)
rexml
simplecov (~> 0.19)
simplecov-html (0.13.2)
simplecov_json_formatter (0.1.4)
simplecov (~> 1.0)
standard (1.56.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down Expand Up @@ -203,8 +197,8 @@ DEPENDENCIES
openfeature-sdk!
rake (~> 13.0)
rspec (~> 3.13.0)
simplecov (~> 0.22.0)
simplecov-cobertura (~> 3.0)
simplecov (~> 1.1.0)
simplecov-cobertura (~> 4.0)
standard
standard-performance
steep (~> 2.0)
Expand Down
11 changes: 11 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# frozen_string_literal: true

require "simplecov"
require "simplecov-cobertura"

SimpleCov.start do
skip "/spec/"
minimum_coverage 90
if ENV["CI"] == "true"
formatter SimpleCov::Formatter::CoberturaFormatter
else
formatter SimpleCov::Formatter::HTMLFormatter
end
end

require "open_feature/sdk"

Expand Down
Loading