Sha256: be75bd797ad963dbf6e5642ae077afd681ef01b82e6fc100eb5ae4e72000b800
Contents?: true
Size: 719 Bytes
Versions: 7
Compression:
Stored size: 719 Bytes
Contents
require_relative "base" require_relative "../../test_optimisation/skippable_percentage/calculator" module Datadog module CI module CLI module Command class SkippableTestsPercentage < Base private def build_action ::Datadog::CI::TestOptimisation::SkippablePercentage::Calculator.new( rspec_cli_options: (options[:"rspec-opts"] || "").split, verbose: !options[:verbose].nil?, spec_path: options[:"spec-path"] || "spec" ) end def command_options(opts) opts.on("--rspec-opts=[OPTIONS]", "Command line options to pass to RSpec") end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems