Module: Datadog::CI::Contrib::RSpec::KnapsackPro::Runner::InstanceMethods

Defined in:
lib/datadog/ci/contrib/rspec/knapsack_pro/runner.rb

Instance Method Summary collapse

Instance Method Details

#knapsack__run_specs(*args) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/datadog/ci/contrib/rspec/knapsack_pro/runner.rb', line 17

def knapsack__run_specs(*args)
  return super if ::RSpec.configuration.dry_run? && !datadog_configuration[:dry_run_enabled]
  return super unless datadog_configuration[:enabled]

  test_session = test_visibility_component.start_test_session(
    tags: {
      CI::Ext::Test::TAG_FRAMEWORK => Ext::FRAMEWORK,
      CI::Ext::Test::TAG_FRAMEWORK_VERSION => CI::Contrib::RSpec::Integration.version.to_s
    },
    service: datadog_configuration[:service_name]
  )

  test_module = test_visibility_component.start_test_module(Ext::FRAMEWORK)

  result = super
  return result unless test_module && test_session

  if result != 0
    test_module.failed!
    test_session.failed!
  else
    test_module.passed!
    test_session.passed!
  end
  test_module.finish
  test_session.finish

  result
end