Class: Datadog::CI::Contrib::ParallelTests::Integration

Inherits:
Integration
  • Object
show all
Defined in:
lib/datadog/ci/contrib/parallel_tests/integration.rb

Overview

Description of ParallelTests integration

Constant Summary collapse

MINIMUM_VERSION =
Gem::Version.new("4.0")

Instance Method Summary collapse

Methods inherited from Integration

#available?, #configuration, #configure, #dependants, #enabled, inherited, #patchable?, #patched?

Instance Method Details

#compatible?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 23

def compatible?
  super && version >= MINIMUM_VERSION
end

#late_instrument?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 27

def late_instrument?
  false
end

#loaded?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 19

def loaded?
  !defined?(::ParallelTests).nil? && !defined?(::ParallelTests::CLI).nil?
end

#new_configurationObject



31
32
33
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 31

def new_configuration
  Configuration::Settings.new
end

#patcherObject



35
36
37
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 35

def patcher
  Patcher
end

#versionObject



15
16
17
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 15

def version
  Gem.loaded_specs["parallel_tests"]&.version
end