dev-pipeline/devpipeline-core

View on GitHub

Showing 8 of 14 total issues

Function _process_reverse has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

def _process_reverse(targets, components, tasks):
    to_process = list(targets)
    known_targets = {target: None for target in targets}
    full_dm = calculate_dependencies(components.keys(), components, tasks)
    dep_manager = devpipeline_core.taskqueue.DependencyManager(tasks)
Severity: Minor
Found in lib/devpipeline_core/resolve.py - 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

Function calculate_dependencies has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

def calculate_dependencies(targets, full_config, tasks):
    dep_manager = devpipeline_core.taskqueue.DependencyManager(tasks)
    to_process, known_targets = _build_target_tasks(targets, tasks)
    missing_components = []
    while to_process:
Severity: Minor
Found in lib/devpipeline_core/resolve.py - 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

Function build_flex_args_keys has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def build_flex_args_keys(components):
    """
    Helper function to build a list of options.

    Some tools require require variations of the same options (e.g., cflags
Severity: Minor
Found in lib/devpipeline_core/toolsupport.py - About 45 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

Function _execute_targets has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

def _execute_targets(task_dict, task_queue, config_info, full_config, fail_function):
Severity: Minor
Found in lib/devpipeline_core/command.py - About 35 mins to fix

    Function _sanitize_legacy_depends has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def _sanitize_legacy_depends(configuration, error_fn):
        for name, component in configuration.items():
            if "depends" in component:
                if not _get_depends_keys(component):
                    error_fn("{} uses a deprecated key (depends)".format(name))
    Severity: Minor
    Found in lib/devpipeline_core/sanitizer.py - 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

    Function _execute_targets has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def _execute_targets(task_dict, task_queue, config_info, full_config, fail_function):
        for component_tasks in task_queue:
            for component_task in component_tasks:
                task_heading = "  {} ({})".format(component_task[0], component_task[1])
                config_info.executor.message(task_heading)
    Severity: Minor
    Found in lib/devpipeline_core/command.py - 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

    Function _check_implicit_depends has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def _check_implicit_depends(component, depends_keys, key, error_fn):
        val = component.get(key, raw=True)
        match = _IMPLICIT_PATTERN.search(val)
        if match:
            dep = match.group(1)
    Severity: Minor
    Found in lib/devpipeline_core/sanitizer.py - 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

    Function process_tasks has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def process_tasks(arguments, tasks, config_fn):
        def _work_fn(targets, full_config):
            task_order = []
            task_dict = {}
            for name, fn in tasks:
    Severity: Minor
    Found in lib/devpipeline_core/command.py - 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

    Severity
    Category
    Status
    Source
    Language