module Codacy::Reporter
Public Class Methods
start(profile: nil, partial: false)
click to toggle source
# File lib/codacy/reporter.rb, line 5 def self.start(profile: nil, partial: false) SimpleCov.formatter = partial ? Codacy::PartialFormatter : Codacy::Formatter SimpleCov.start(profile) end