Module: Datadog::CI::Contrib::Minitest::Hooks

Defined in:
lib/datadog/ci/contrib/minitest/hooks.rb

Overview

Lifecycle hooks to instrument Minitest::Test

Instance Method Summary collapse

Instance Method Details

#after_teardownObject



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/datadog/ci/contrib/minitest/hooks.rb', line 40

def after_teardown
  test_span = CI.active_test
  return super unless test_span

  finish_with_result(test_span, result_code)
  if Helpers.parallel?(self.class)
    finish_with_result(test_span.test_suite, result_code)
  end

  super
end

#before_setupObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/datadog/ci/contrib/minitest/hooks.rb', line 13

def before_setup
  super
  return unless datadog_configuration[:enabled]

  test_suite_name = Helpers.test_suite_name(self.class, name)
  if Helpers.parallel?(self.class)
    test_suite_name = "#{test_suite_name} (#{name} concurrently)"

    # for parallel execution we need to start a new test suite for each test
    CI.start_test_suite(test_suite_name)
  end

  source_file, line_number = method(name).source_location

  CI.start_test(
    name,
    test_suite_name,
    tags: {
      CI::Ext::Test::TAG_FRAMEWORK => Ext::FRAMEWORK,
      CI::Ext::Test::TAG_FRAMEWORK_VERSION => CI::Contrib::Minitest::Integration.version.to_s,
      CI::Ext::Test::TAG_SOURCE_FILE => Utils::Git.relative_to_root(source_file),
      CI::Ext::Test::TAG_SOURCE_START => line_number.to_s
    },
    service: datadog_configuration[:service_name]
  )
end