Sha256: 68ee4e89f022fc2b3a489ecb65bca50194ff6b5f6d2ca1e81c3fc4d009c57215

Contents?: true

Size: 584 Bytes

Versions: 3

Compression:

Stored size: 584 Bytes

Contents

require 'datadog/ci'

# Enable CI tracing
Datadog.configure do |c|
  c.ci_mode.enabled = true
  c.use :rspec
end

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.shared_context_metadata_behavior = :apply_to_host_groups
  config.filter_run_when_matching :focus
  config.disable_monkey_patching!
  config.profile_examples = 10
  config.order = :random
  Kernel.srand config.seed
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ddtrace-0.51.1 integration/apps/rspec/spec/spec_helper.rb
ddtrace-0.51.0 integration/apps/rspec/spec/spec_helper.rb
ddtrace-0.50.0 integration/apps/rspec/spec/spec_helper.rb