launch.rb

Summary

Maintainability
C
7 hrs
Test Coverage

Method enqueue_builds_for_open_github_prs_with_no_status has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    def self.enqueue_builds_for_open_github_prs_with_no_status(projects: nil, github_service: nil)
      logger.debug("Searching for open PRs with no status and starting a build for them")
      projects.each do |project|
        # Don't enqueue builds for the open pull requests if we don't have a pull request trigger defined for it
        next if project.find_triggers_of_type(trigger_type: :pull_request).first.nil?
Severity: Minor
Found in launch.rb - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method run_pending_github_builds has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

    def self.run_pending_github_builds(projects: nil, github_service: nil)
      logger.debug("Searching all projects for commits with pending status that need a new build")
      # For each project, rerun all builds with the status of "pending"
      projects.each do |project|
        # Don't enqueue builds for the open pull requests if we don't have a pull request trigger defined for it
Severity: Minor
Found in launch.rb - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method run_pending_github_builds has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def self.run_pending_github_builds(projects: nil, github_service: nil)
      logger.debug("Searching all projects for commits with pending status that need a new build")
      # For each project, rerun all builds with the status of "pending"
      projects.each do |project|
        # Don't enqueue builds for the open pull requests if we don't have a pull request trigger defined for it
Severity: Minor
Found in launch.rb - About 1 hr to fix

    Method register_available_controllers has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def self.register_available_controllers
          # require all controllers
          require_relative "app/features/all"
          # Load up all the available controllers
    
    
    Severity: Minor
    Found in launch.rb - About 1 hr to fix

      Method enqueue_builds_for_open_github_prs_with_no_status has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def self.enqueue_builds_for_open_github_prs_with_no_status(projects: nil, github_service: nil)
            logger.debug("Searching for open PRs with no status and starting a build for them")
            projects.each do |project|
              # Don't enqueue builds for the open pull requests if we don't have a pull request trigger defined for it
              next if project.find_triggers_of_type(trigger_type: :pull_request).first.nil?
      Severity: Minor
      Found in launch.rb - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status