Merge branch 'feature/simplecov-intergration' into develop
This commit is contained in:
commit
4b0642cc6d
1
Gemfile
1
Gemfile
|
@ -9,4 +9,5 @@ group :test do
|
||||||
gem 'rspec'
|
gem 'rspec'
|
||||||
gem 'rubocop'
|
gem 'rubocop'
|
||||||
gem 'coveralls', require: false
|
gem 'coveralls', require: false
|
||||||
|
gem 'simplecov', require: false
|
||||||
end
|
end
|
||||||
|
|
|
@ -100,3 +100,4 @@ DEPENDENCIES
|
||||||
rake
|
rake
|
||||||
rspec
|
rspec
|
||||||
rubocop
|
rubocop
|
||||||
|
simplecov
|
||||||
|
|
|
@ -16,7 +16,12 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
require 'coveralls'
|
require 'coveralls'
|
||||||
Coveralls.wear!
|
require 'simplecov'
|
||||||
|
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
||||||
|
SimpleCov::Formatter::HTMLFormatter,
|
||||||
|
Coveralls::SimpleCov::Formatter
|
||||||
|
]
|
||||||
|
SimpleCov.start
|
||||||
|
|
||||||
require 'github_changelog_generator'
|
require 'github_changelog_generator'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user