Class: Datadog::CI::Contrib::ParallelTests::Integration
- Inherits:
-
Integration
- Object
- Integration
- Datadog::CI::Contrib::ParallelTests::Integration
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
23
24
25
|
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 23
def compatible?
super && version >= MINIMUM_VERSION
end
|
#late_instrument? ⇒ Boolean
27
28
29
|
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 27
def late_instrument?
false
end
|
#loaded? ⇒ 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_configuration ⇒ Object
31
32
33
|
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 31
def new_configuration
Configuration::Settings.new
end
|
#patcher ⇒ Object
35
36
37
|
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 35
def patcher
Patcher
end
|
#version ⇒ Object
15
16
17
|
# File 'lib/datadog/ci/contrib/parallel_tests/integration.rb', line 15
def version
Gem.loaded_specs["parallel_tests"]&.version
end
|