hiptest/hiptest-publisher

View on GitHub
lib/hiptest-publisher/signature_differ.rb

Summary

Maintainability
A
3 hrs
Test Coverage
A
100%

Method compute_diff has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def compute_diff(library_name = nil)
      if library_name.nil?
        @old_uid = map_by_uid(@old)
        @current_uid = map_by_uid(@current)
      else
Severity: Minor
Found in lib/hiptest-publisher/signature_differ.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 compute_definition_changed has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def compute_definition_changed
      @definition_changed_uids = []

      @definition_changed = @current_uid.map do |uid, aw|
        next if @old_uid[uid].nil?
Severity: Minor
Found in lib/hiptest-publisher/signature_differ.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 compute_signature_changed has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def compute_signature_changed
      excluded = [
        @created_uids,
        @deleted_uids,
        @definition_changed_uids
Severity: Minor
Found in lib/hiptest-publisher/signature_differ.rb - About 25 mins 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 compute_renamed has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

    def compute_renamed
      excluded = [
        @created_uids,
        @deleted_uids,
        @definition_changed_uids,
Severity: Minor
Found in lib/hiptest-publisher/signature_differ.rb - About 25 mins 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

There are no issues that match your filters.

Category
Status