Sha256: e0b97759d612a96f6bd1a89dff20c21ea749812ba1d2d2f9e34636a4919b02be

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 KB

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require_relative 'helpers/matches'
include Matches

begin
  require 'rake/testtask'
rescue LoadError
end

if defined? Rake::TestTask
  namespace :test do
    tasks = Rake.application.top_level_tasks
    ENV["TESTOPTS"] ||= ""
    if tasks.any? { |t| t.include?("verbose") }
      ENV["TESTOPTS"] += " -v"
    end
    if seed = look_for_seed(tasks)
      ENV["TESTOPTS"] += " --" + seed
    end

    agent_home = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))

    Rake::TestTask.new(:newrelic) do |t|
      file_pattern = ENV["file"]
      file_pattern = file_pattern.split(",").map { |f| "#{agent_home}/#{f}".gsub("//", "/") } if file_pattern
      file_pattern ||= "#{agent_home}/test/new_relic/**/*_test.rb"

      t.libs << "#{agent_home}/test"
      t.libs << "#{agent_home}/lib"
      t.pattern = Array(file_pattern)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
newrelic_rpm-9.0.0 lib/tasks/tests.rake
newrelic_rpm-8.16.0 lib/tasks/tests.rake
newrelic_rpm-8.15.0 lib/tasks/tests.rake
newrelic_rpm-8.14.0 lib/tasks/tests.rake
newrelic_rpm-8.13.1 lib/tasks/tests.rake
newrelic_rpm-8.13.0 lib/tasks/tests.rake
newrelic_rpm-8.12.0 lib/tasks/tests.rake
newrelic_rpm-8.11.0 lib/tasks/tests.rake