conan-io/conan

View on GitHub
conans/client/graph/graph_builder.py

Summary

Maintainability
B
6 hrs
Test Coverage

Function _expand_require has a Cognitive Complexity of 47 (exceeds 20 allowed). Consider refactoring.
Open

    def _expand_require(self, require, node, graph, check_updates, update, remotes, profile_host,
                        profile_build, new_reqs, new_options, graph_lock, context_switch,
                        populate_settings_target=True):
        # Handle a requirement of a node. There are 2 possibilities
        #    node -(require)-> new_node (creates a new node in the graph)
Severity: Minor
Found in conans/client/graph/graph_builder.py - About 4 hrs 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 _expand_require has 13 arguments (exceeds 10 allowed). Consider refactoring.
Open

    def _expand_require(self, require, node, graph, check_updates, update, remotes, profile_host,
Severity: Major
Found in conans/client/graph/graph_builder.py - About 50 mins to fix

    Function _expand_node has 11 arguments (exceeds 10 allowed). Consider refactoring.
    Open

        def _expand_node(self, node, graph, down_reqs, down_ref, down_options, check_updates, update,
    Severity: Major
    Found in conans/client/graph/graph_builder.py - About 35 mins to fix

      Function _create_new_node has 11 arguments (exceeds 10 allowed). Consider refactoring.
      Open

          def _create_new_node(self, current_node, dep_graph, requirement, check_updates,
      Severity: Major
      Found in conans/client/graph/graph_builder.py - About 35 mins to fix

        Line too long (124 > 100 characters)
        Open

                            f"{current_node.ref} require '{search_ref_name}/{ref_version}': didn't find a matching host dependency")
        Severity: Minor
        Found in conans/client/graph/graph_builder.py by pep8

        Limit all lines to a maximum of 79 characters.

        There are still many devices around that are limited to 80 character
        lines; plus, limiting windows to 80 characters makes it possible to
        have several windows side-by-side.  The default wrapping on such
        devices looks ugly.  Therefore, please limit all lines to a maximum
        of 79 characters. For flowing long blocks of text (docstrings or
        comments), limiting the length to 72 characters is recommended.
        
        Reports error E501.

        Line too long (102 > 100 characters)
        Open

                        result = self._proxy.get_recipe(alias, check_updates, update, remotes, self._recorder)
        Severity: Minor
        Found in conans/client/graph/graph_builder.py by pep8

        Limit all lines to a maximum of 79 characters.

        There are still many devices around that are limited to 80 character
        lines; plus, limiting windows to 80 characters makes it possible to
        have several windows side-by-side.  The default wrapping on such
        devices looks ugly.  Therefore, please limit all lines to a maximum
        of 79 characters. For flowing long blocks of text (docstrings or
        comments), limiting the length to 72 characters is recommended.
        
        Reports error E501.

        There are no issues that match your filters.

        Category
        Status