avocado-framework/avocado

View on GitHub
avocado/plugins/distro.py

Summary

Maintainability
B
6 hrs
Test Coverage
F
47%

File distro.py has 342 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
Severity: Minor
Found in avocado/plugins/distro.py - About 4 hrs to fix

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

        def run(self, config):
            name = config.get("distro.distro_def_name")
            version = config.get("distro.distro_def_version")
            release = config.get("distro.distro_def_release")
            arch = config.get("distro.distro_def_arch")
    Severity: Minor
    Found in avocado/plugins/distro.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 load_from_tree has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def load_from_tree(name, version, release, arch, package_type, path):
    Severity: Minor
    Found in avocado/plugins/distro.py - About 45 mins to fix

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

          def __init__(self, name, version, release, checksum, arch):
      Severity: Minor
      Found in avocado/plugins/distro.py - About 35 mins to fix

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

            def get_packages_info(self):
                """
                This method will go through each file, checking if it's a valid
                software package file by calling :meth:`is_software_package` and
                calling :meth:`load_package_info` if it's so.
        Severity: Minor
        Found in avocado/plugins/distro.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

        There are no issues that match your filters.

        Category
        Status