Module: Datadog::CI::Contrib::Knapsack::Runner::InstanceMethods
- Defined in:
- lib/datadog/ci/contrib/knapsack/runner.rb
Instance Method Summary collapse
-
#knapsack__run_specs(*args) ⇒ Object
TODO: this is coupled to RSpec integration being present, not sure if it’s bad or not at this point.
Instance Method Details
#knapsack__run_specs(*args) ⇒ Object
TODO: this is coupled to RSpec integration being present, not sure if it’s bad or not at this point
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 46 |
# File 'lib/datadog/ci/contrib/knapsack/runner.rb', line 18 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 => CI::Contrib::RSpec::Ext::FRAMEWORK, CI::Ext::Test::TAG_FRAMEWORK_VERSION => datadog_integration.version.to_s }, service: datadog_configuration[:service_name] ) test_module = test_visibility_component.start_test_module(CI::Contrib::RSpec::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 |