Sha256: 44709ddc5eb15c3336b42b1afb9fec4e7626ece27a8157ea1b82c22a47aa9c5d
Contents?: true
Size: 908 Bytes
Versions: 4
Compression:
Stored size: 908 Bytes
Contents
# frozen_string_literal: true require_relative "../ext" require_relative "../../settings" module Datadog module CI module Contrib module Minitest module Configuration # Custom settings for the Minitest integration # TODO: mark as `@public_api` when GA class Settings < Datadog::CI::Contrib::Settings option :enabled do |o| o.type :bool o.env Ext::ENV_ENABLED o.default true end option :service_name do |o| o.type :string o.default { Datadog.configuration.service_without_fallback || Ext::SERVICE_NAME } end option :operation_name do |o| o.type :string o.env Ext::ENV_OPERATION_NAME o.default Ext::OPERATION_NAME end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems