Sha256: 71913ae23c935835f34e700ef1eb94ef08a534c5e24dca24ac7d67a8f0d33513

Contents?: true

Size: 1.32 KB

Versions: 10

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

namespace :coverband do
  ###
  # note: If your project has set many simplecov filters.
  # You might want to override them and clear the filters.
  # Or run the task `coverage_no_filters` below.
  ###
  desc 'report runtime coverband code coverage'
  task coverage: :environment do
    if Coverband.configuration.reporter == 'scov'
      Coverband::Reporters::SimpleCovReport.report(Coverband.configuration.store)
    else
      Coverband::Reporters::ConsoleReport.report(Coverband.configuration.store)
    end
  end

  def clear_simplecov_filters
    SimpleCov.filters.clear if defined? SimpleCov
  end

  desc 'report runtime coverband code coverage after disabling simplecov filters'
  task coverage_no_filters: :environment do
    if Coverband.configuration.reporter == 'scov'
      clear_simplecov_filters
      Coverband::Reporters::SimpleCovReport.report(Coverband.configuration.store)
    else
      puts 'coverage without filters only makes sense for SimpleCov reports'
    end
  end

  ###
  # You likely want to clear coverage after significant code changes.
  # You may want to have a hook that saves current coverband data on deploy
  # and then resets the coverband store data.
  ###
  desc 'reset coverband coverage data'
  task clear: :environment do
    Coverband.configuration.store.clear!
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
coverband-3.0.1 lib/coverband/utils/tasks.rb
coverband-3.0.1.alpha lib/coverband/utils/tasks.rb
coverband-3.0.0 lib/coverband/utils/tasks.rb
coverband-3.0.0.alpha2 lib/coverband/utils/tasks.rb
coverband-3.0.0.alpha lib/coverband/utils/tasks.rb
coverband-2.0.3 lib/coverband/tasks.rb
coverband-2.0.3.alpha lib/coverband/tasks.rb
coverband-2.0.2 lib/coverband/tasks.rb
coverband-2.0.2.alpha2 lib/coverband/tasks.rb
coverband-2.0.2.alpha lib/coverband/tasks.rb