0.0
No release in over a year
Plugin that allows code coverage print
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.1
~> 2.14
= 3.0.7
>= 0
~> 12.3
~> 3.4
>= 0

Runtime

 Project Readme

danger-rcov

This plugin will provide an interface similar to codecov.

Screenshot 2020-06-08 at 22 24 18

Installation

$ gem install danger-rcov

Usage

[circleCI] Inside your Dangerfile:

  # stable branch to check against (default: 'master')
  # build name (default: 'build')
  # warning (default: true)
  markdown rcov.report('master', 'build', true)

[Others] Generic

  # current branch url to coverage.json
  # stable branch url to coverage.json
  # warning (default: true)
  markdown rcov.report_by_urls('http://current_branch/coverage.json', 'http://master_branch/coverage.json', true)
  # current branch json report file
  # pr number
  # stable branch json report file
  # stable pr number
  # warning (default: true)
  markdown rcov.report_by_files(current_cov_json_file, current_pr_number, prev_cov_json_file, previous_pr_number, true)