class AutomationHelpers::Patches::ParallelCucumber

Private Instance Methods

deprecation_notice_date() click to toggle source
# File lib/automation_helpers/patches/parallel_cucumber.rb, line 20
def deprecation_notice_date
  Time.new(2022, 6, 30)
end
description() click to toggle source
# File lib/automation_helpers/patches/parallel_cucumber.rb, line 8
      def description
        <<~DESCRIPTION
          This patch fixes an issue where the parallel tests gem won't place the --retry flag in the correct
          position for command invocation with cucumber
          See: https://github.com/grosser/parallel_tests/pull/827 for more details/discussion including this fix
        DESCRIPTION
      end
gem_version() click to toggle source
# File lib/automation_helpers/patches/parallel_cucumber.rb, line 28
def gem_version
  ::ParallelTests::VERSION
end
perform() click to toggle source
# File lib/automation_helpers/patches/parallel_cucumber.rb, line 16
def perform
  ::ParallelTests::Gherkin::Runner.extend RetryFlagFix
end
prevent_usage_from() click to toggle source
# File lib/automation_helpers/patches/parallel_cucumber.rb, line 24
def prevent_usage_from
  '4.0.0'
end