Skip to content

Commit

Permalink
Ensure simplecov version is supported by CodeClimate
Browse files Browse the repository at this point in the history
On Ruby 2.4 simplecov 0.18 is installed which [isn't supported by
CodeClimate][1]. This [was also broken on master][2].

[1]: https://docs.codeclimate.com/docs/configuring-test-coverage
[2]: https://travis-ci.org/github/prontolabs/pronto/jobs/748290009#L1025
  • Loading branch information
dsander committed Jan 30, 2021
1 parent 31ce72c commit 68f7109
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pronto.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@ Gem::Specification.new do |s|
s.add_development_dependency('rspec-its', '~> 1.2')
s.add_development_dependency('rspec-expectations', '~> 3.4')
s.add_development_dependency('rubocop', '~> 0.58')
s.add_development_dependency('simplecov', '~> 0.14')
s.add_development_dependency('simplecov', '~> 0.14', '!= 0.18.0', '!= 0.18.1', '!= 0.18.2', '!= 0.18.3', '!= 0.18.4',
'!= 0.18.5', '!= 0.19.0', '!= 0.19.1')
end

0 comments on commit 68f7109

Please sign in to comment.