saltstack/salt

View on GitHub
salt/utils/gitfs.py

Summary

Maintainability
F
3 wks
Test Coverage

File gitfs.py has 2672 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-
'''
Classes which provide the shared base for GitFS, git_pillar, and winrepo
'''

Severity: Major
Found in salt/utils/gitfs.py - About 1 wk to fix

    Function __init__ has a Cognitive Complexity of 64 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, opts, remote, per_remote_defaults, per_remote_only,
                     override_params, cache_root, role='gitfs'):
            self.opts = opts
            self.role = role
            self.global_saltenv = salt.utils.data.repack_dictlist(
    Severity: Minor
    Found in salt/utils/gitfs.py - About 1 day 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 checkout has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
    Open

        def checkout(self):
            '''
            Checkout the configured branch/tag
            '''
            tgt_ref = self.get_checkout_target()
    Severity: Minor
    Found in salt/utils/gitfs.py - About 1 day 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 init_remotes has a Cognitive Complexity of 47 (exceeds 5 allowed). Consider refactoring.
    Open

        def init_remotes(self, remotes, per_remote_overrides=(),
                         per_remote_only=PER_REMOTE_ONLY,
                         global_only=GLOBAL_ONLY):
            '''
            Initialize remotes
    Severity: Minor
    Found in salt/utils/gitfs.py - About 7 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

    Cyclomatic complexity is too high in method __init__. (47)
    Open

        def __init__(self, opts, remote, per_remote_defaults, per_remote_only,
                     override_params, cache_root, role='gitfs'):
            self.opts = opts
            self.role = role
            self.global_saltenv = salt.utils.data.repack_dictlist(
    Severity: Minor
    Found in salt/utils/gitfs.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function _lock has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
    Open

        def _lock(self, lock_type='update', failhard=False):
            '''
            Place a lock file if (and only if) it does not already exist.
            '''
            try:
    Severity: Minor
    Found in salt/utils/gitfs.py - About 5 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 verify_auth has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
    Open

        def verify_auth(self):
            '''
            Check the username and password/keypair info for validity. If valid,
            set a 'credentials' attribute consisting of the appropriate Pygit2
            credentials object. Return False if a required auth param is not
    Severity: Minor
    Found in salt/utils/gitfs.py - About 5 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 add_conf_overlay has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
    Open

        def add_conf_overlay(cls, name):
            '''
            Programmatically determine config value based on the desired saltenv
            '''
            def _getconf(self, tgt_env='base'):
    Severity: Minor
    Found in salt/utils/gitfs.py - About 5 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 link_mountpoint has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

        def link_mountpoint(self, repo):
            '''
            Ensure that the mountpoint is present in the correct location and
            points at the correct path
            '''
    Severity: Minor
    Found in salt/utils/gitfs.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 find_file has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

        def find_file(self, path, tgt_env='base', **kwargs):  # pylint: disable=W0613
            '''
            Find the first file to match the path and ref, read the file out of git
            and send the path to the newly cached file
            '''
    Severity: Minor
    Found in salt/utils/gitfs.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 checkout has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
    Open

        def checkout(self):
            '''
            Checkout the targeted branches/tags from the git_pillar remotes
            '''
            self.pillar_dirs = OrderedDict()
    Severity: Minor
    Found in salt/utils/gitfs.py - About 3 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 enforce_types has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

    def enforce_types(key, val):
        '''
        Force params to be strings unless they should remain a different type
        '''
        non_string_params = {
    Severity: Minor
    Found in salt/utils/gitfs.py - About 3 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 file_list has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
    Open

        def file_list(self, tgt_env):
            '''
            Get file list for the target environment using pygit2
            '''
            def _traverse(tree, blobs, prefix):
    Severity: Minor
    Found in salt/utils/gitfs.py - About 3 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

    GitProvider has 27 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class GitProvider(object):
        '''
        Base class for gitfs/git_pillar provider classes. Should never be used
        directly.
    
    
    Severity: Minor
    Found in salt/utils/gitfs.py - About 3 hrs to fix

      Function dir_list has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
      Open

          def dir_list(self, tgt_env):
              '''
              Get a list of directories for the target environment using pygit2
              '''
              def _traverse(tree, blobs, prefix):
      Severity: Minor
      Found in salt/utils/gitfs.py - About 2 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

      Cyclomatic complexity is too high in method init_remotes. (27)
      Open

          def init_remotes(self, remotes, per_remote_overrides=(),
                           per_remote_only=PER_REMOTE_ONLY,
                           global_only=GLOBAL_ONLY):
              '''
              Initialize remotes
      Severity: Minor
      Found in salt/utils/gitfs.py by radon

      Cyclomatic Complexity

      Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

      Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

      Construct Effect on CC Reasoning
      if +1 An if statement is a single decision.
      elif +1 The elif statement adds another decision.
      else +0 The else statement does not cause a new decision. The decision is at the if.
      for +1 There is a decision at the start of the loop.
      while +1 There is a decision at the while statement.
      except +1 Each except branch adds a new conditional path of execution.
      finally +0 The finally block is unconditionally executed.
      with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
      assert +1 The assert statement internally roughly equals a conditional statement.
      Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
      Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

      Source: http://radon.readthedocs.org/en/latest/intro.html

      Cyclomatic complexity is too high in method verify_auth. (26)
      Open

          def verify_auth(self):
              '''
              Check the username and password/keypair info for validity. If valid,
              set a 'credentials' attribute consisting of the appropriate Pygit2
              credentials object. Return False if a required auth param is not
      Severity: Minor
      Found in salt/utils/gitfs.py by radon

      Cyclomatic Complexity

      Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

      Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

      Construct Effect on CC Reasoning
      if +1 An if statement is a single decision.
      elif +1 The elif statement adds another decision.
      else +0 The else statement does not cause a new decision. The decision is at the if.
      for +1 There is a decision at the start of the loop.
      while +1 There is a decision at the while statement.
      except +1 Each except branch adds a new conditional path of execution.
      finally +0 The finally block is unconditionally executed.
      with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
      assert +1 The assert statement internally roughly equals a conditional statement.
      Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
      Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

      Source: http://radon.readthedocs.org/en/latest/intro.html

      Function verify_provider has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def verify_provider(self):
              '''
              Determine which provider to use
              '''
              if 'verified_{0}_provider'.format(self.role) in self.opts:
      Severity: Minor
      Found in salt/utils/gitfs.py - About 2 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 clear_old_remotes has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def clear_old_remotes(self):
              '''
              Remove cache directories for remotes no longer configured
              '''
              try:
      Severity: Minor
      Found in salt/utils/gitfs.py - About 2 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 _get_envs_from_ref_paths has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def _get_envs_from_ref_paths(self, refs):
              '''
              Return the names of remote refs (stripped of the remote name) and tags
              which are map to the branches and tags.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.py - About 2 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 enforce_git_config has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          def enforce_git_config(self):
              '''
              For the config options which need to be maintained in the git config,
              ensure that the git config file is configured as desired.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.py - About 2 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

      Cyclomatic complexity is too high in method find_file. (22)
      Open

          def find_file(self, path, tgt_env='base', **kwargs):  # pylint: disable=W0613
              '''
              Find the first file to match the path and ref, read the file out of git
              and send the path to the newly cached file
              '''
      Severity: Minor
      Found in salt/utils/gitfs.py by radon

      Cyclomatic Complexity

      Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

      Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

      Construct Effect on CC Reasoning
      if +1 An if statement is a single decision.
      elif +1 The elif statement adds another decision.
      else +0 The else statement does not cause a new decision. The decision is at the if.
      for +1 There is a decision at the start of the loop.
      while +1 There is a decision at the while statement.
      except +1 Each except branch adds a new conditional path of execution.
      finally +0 The finally block is unconditionally executed.
      with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
      assert +1 The assert statement internally roughly equals a conditional statement.
      Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
      Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

      Source: http://radon.readthedocs.org/en/latest/intro.html

      Cyclomatic complexity is too high in method checkout. (22)
      Open

          def checkout(self):
              '''
              Checkout the configured branch/tag
              '''
              tgt_ref = self.get_checkout_target()
      Severity: Minor
      Found in salt/utils/gitfs.py by radon

      Cyclomatic Complexity

      Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

      Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

      Construct Effect on CC Reasoning
      if +1 An if statement is a single decision.
      elif +1 The elif statement adds another decision.
      else +0 The else statement does not cause a new decision. The decision is at the if.
      for +1 There is a decision at the start of the loop.
      while +1 There is a decision at the while statement.
      except +1 Each except branch adds a new conditional path of execution.
      finally +0 The finally block is unconditionally executed.
      with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
      assert +1 The assert statement internally roughly equals a conditional statement.
      Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
      Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

      Source: http://radon.readthedocs.org/en/latest/intro.html

      Function checkout has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def checkout(self):
              '''
              Checkout the configured branch/tag. We catch an "Exception" class here
              instead of a specific exception class because the exceptions raised by
              GitPython when running these functions vary in different versions of
      Severity: Minor
      Found in salt/utils/gitfs.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 gen_lock has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def gen_lock(self, lock_type='update', timeout=0, poll_interval=0.5):
              '''
              Set and automatically clear a lock
              '''
              if not isinstance(lock_type, six.string_types):
      Severity: Minor
      Found in salt/utils/gitfs.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 _file_lists has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def _file_lists(self, load, form):
              '''
              Return a dict containing the file lists for files and dirs
              '''
              if 'env' in load:
      Severity: Minor
      Found in salt/utils/gitfs.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 _fetch has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def _fetch(self):
              '''
              Fetch the repo. If the local copy was updated, return True. If the
              local copy was already up-to-date, return False.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 verify_pygit2 has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def verify_pygit2(self, quiet=False):
              '''
              Check if pygit2/libgit2 are available and at a compatible version.
              Pygit2 must be at least 0.20.3 and libgit2 must be at least 0.20.0.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 find_file has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def find_file(self, path, tgt_env):
              '''
              Find the specified file in the specified environment
              '''
              tree = self.get_tree(tgt_env)
      Severity: Minor
      Found in salt/utils/gitfs.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 lock has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def lock(self, remote=None):
              '''
              Place an update.lk
              '''
              locked = []
      Severity: Minor
      Found in salt/utils/gitfs.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 clear_lock has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def clear_lock(self, remote=None, lock_type='update'):
              '''
              Clear update.lk for all remotes
              '''
              cleared = []
      Severity: Minor
      Found in salt/utils/gitfs.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 verify_gitpython has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def verify_gitpython(self, quiet=False):
              '''
              Check if GitPython is available and at a compatible version (>= 0.3.0)
              '''
              def _recommend():
      Severity: Minor
      Found in salt/utils/gitfs.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 find_file has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def find_file(self, path, tgt_env):
              '''
              Find the specified file in the specified environment
              '''
              tree = self.get_tree(tgt_env)
      Severity: Minor
      Found in salt/utils/gitfs.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 fetch_remotes has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def fetch_remotes(self, remotes=None):
              '''
              Fetch all remotes and return a boolean to let the calling function know
              whether or not any remotes were updated in the process of fetching
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 linkdir_walk has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def linkdir_walk(self):
              '''
              Return the expected result of an os.walk on the linkdir, based on the
              mountpoint value.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 file_list has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def file_list(self, tgt_env):
              '''
              Get file list for the target environment using GitPython
              '''
              files = set()
      Severity: Minor
      Found in salt/utils/gitfs.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 clean_stale_refs has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def clean_stale_refs(self):
              '''
              Remove stale refs so that they are no longer seen as fileserver envs
              '''
              cleaned = []
      Severity: Minor
      Found in salt/utils/gitfs.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 _fetch has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def _fetch(self):
              '''
              Fetch the repo. If the local copy was updated, return True. If the
              local copy was already up-to-date, return False.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 __new__ has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def __new__(cls, opts, remotes=None, per_remote_overrides=(),
                      per_remote_only=PER_REMOTE_ONLY, git_providers=None,
                      cache_root=None, init_remotes=True):
              '''
              If we are not initializing remotes (such as in cases where we just want
      Severity: Minor
      Found in salt/utils/gitfs.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 dir_list has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def dir_list(self, tgt_env):
              '''
              Get list of directories for the target environment using GitPython
              '''
              ret = set()
      Severity: Minor
      Found in salt/utils/gitfs.py - About 55 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 clear_lock has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def clear_lock(self, lock_type='update'):
              '''
              Clear update.lk
              '''
              lock_file = self._get_lock_file(lock_type=lock_type)
      Severity: Minor
      Found in salt/utils/gitfs.py - About 55 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 get_tree has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_tree(self, tgt_env):
              '''
              Return a tree object for the specified environment
              '''
              if not self.env_is_exposed(tgt_env):
      Severity: Minor
      Found in salt/utils/gitfs.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 do_checkout has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def do_checkout(self, repo):
              '''
              Common code for git_pillar/winrepo to handle locking and checking out
              of a repo.
              '''
      Severity: Minor
      Found in salt/utils/gitfs.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 file_hash has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def file_hash(self, load, fnd):
              '''
              Return a file hash, the hash type is set in the master config file
              '''
              if 'env' in load:
      Severity: Minor
      Found in salt/utils/gitfs.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

      Avoid deeply nested control flow statements.
      Open

                                  if not os.path.isfile(key_path):
                                      _key_does_not_exist(key_type, key_path)
                              except TypeError:
      Severity: Major
      Found in salt/utils/gitfs.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if saltenv == 'base':
                                    # Remove redundant 'ref' config for base saltenv
                                    repo_obj.saltenv[saltenv].pop('ref')
                                    if ref != repo_obj.base:
                                        log.warning(
        Severity: Major
        Found in salt/utils/gitfs.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                              if salt.utils.platform.is_windows() \
                                                      and not ldest.startswith('\\\\') \
                                                      and os.path.isdir(ldest):
                                                  # On Windows, symlinks to directories
                                                  # must be removed as if they were
          Severity: Major
          Found in salt/utils/gitfs.py - About 45 mins to fix

            Function get_checkout_target has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                def get_checkout_target(self):
                    '''
                    Resolve dynamically-set branch
                    '''
                    if self.role == 'git_pillar' and self.branch == '__env__':
            Severity: Minor
            Found in salt/utils/gitfs.py - About 35 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 update has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                def update(self, remotes=None):
                    '''
                    .. versionchanged:: 2018.3.0
                        The remotes argument was added. This being a list of remote URLs,
                        it will only update matching remotes. This actually matches on
            Severity: Minor
            Found in salt/utils/gitfs.py - About 35 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

            Avoid too many return statements within this function.
            Open

                        return None
            Severity: Major
            Found in salt/utils/gitfs.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                              return strip_sep(self.global_saltenv[tgt_env][name])
              Severity: Major
              Found in salt/utils/gitfs.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        return msg
                Severity: Major
                Found in salt/utils/gitfs.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                                  return strip_sep(getattr(self, '_' + name))
                  Severity: Major
                  Found in salt/utils/gitfs.py - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                return six.text_type(val)
                    Severity: Major
                    Found in salt/utils/gitfs.py - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                          return self.check_root()
                      Severity: Major
                      Found in salt/utils/gitfs.py - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                        return self.check_root()
                        Severity: Major
                        Found in salt/utils/gitfs.py - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                  return True
                          Severity: Major
                          Found in salt/utils/gitfs.py - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                            return strip_sep(saltenv_conf[name])
                            Severity: Major
                            Found in salt/utils/gitfs.py - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                                      return None
                              Severity: Major
                              Found in salt/utils/gitfs.py - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                                            return None
                                Severity: Major
                                Found in salt/utils/gitfs.py - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                          return None
                                  Severity: Major
                                  Found in salt/utils/gitfs.py - About 30 mins to fix

                                    Avoid too many return statements within this function.
                                    Open

                                                                return None
                                    Severity: Major
                                    Found in salt/utils/gitfs.py - About 30 mins to fix

                                      Avoid too many return statements within this function.
                                      Open

                                                          return per_saltenv_ref or tgt_env
                                      Severity: Major
                                      Found in salt/utils/gitfs.py - About 30 mins to fix

                                        Avoid too many return statements within this function.
                                        Open

                                                        return True
                                        Severity: Major
                                        Found in salt/utils/gitfs.py - About 30 mins to fix

                                          Avoid too many return statements within this function.
                                          Open

                                                          return True
                                          Severity: Major
                                          Found in salt/utils/gitfs.py - About 30 mins to fix

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

                                                def setup_callbacks(self):
                                                    '''
                                                    Assign attributes for pygit2 callbacks
                                                    '''
                                                    if PYGIT2_VERSION >= _LooseVersion('0.23.2'):
                                            Severity: Minor
                                            Found in salt/utils/gitfs.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 envs has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                            Open

                                                def envs(self, ignore_cache=False):
                                                    '''
                                                    Return a list of refs that can be used as environments
                                                    '''
                                                    if not ignore_cache:
                                            Severity: Minor
                                            Found in salt/utils/gitfs.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 __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                            Open

                                                def __init__(self, opts, remotes=None, per_remote_overrides=(),
                                                             per_remote_only=PER_REMOTE_ONLY, global_only=GLOBAL_ONLY,
                                                             git_providers=None, cache_root=None, init_remotes=True):
                                                    '''
                                                    IMPORTANT: If specifying a cache_root, understand that this is also
                                            Severity: Minor
                                            Found in salt/utils/gitfs.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 clear_cache has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                            Open

                                                def clear_cache(self):
                                                    '''
                                                    Completely clear cache
                                                    '''
                                                    errors = []
                                            Severity: Minor
                                            Found in salt/utils/gitfs.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

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                        if remote:
                                                            # Specific remote URL/pattern was passed, ensure that the URL
                                                            # matches or else skip this one
                                                            try:
                                                                if not fnmatch.fnmatch(repo.url, remote):
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 1 other location - About 2 hrs to fix
                                            salt/utils/gitfs.py on lines 2338..2346

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 53.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                        if remote:
                                                            # Specific remote URL/pattern was passed, ensure that the URL
                                                            # matches or else skip this one
                                                            try:
                                                                if not fnmatch.fnmatch(repo.url, remote):
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 1 other location - About 2 hrs to fix
                                            salt/utils/gitfs.py on lines 2395..2403

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 53.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Identical blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                    if not all(x in load for x in required_load_keys):
                                                        log.debug(
                                                            'Not all of the required keys present in payload. Missing: %s',
                                                            ', '.join(required_load_keys.difference(load))
                                                        )
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 1 other location - About 2 hrs to fix
                                            salt/fileserver/azurefs.py on lines 155..160

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 51.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                    if not PYGIT2_VERSION:
                                                        if not quiet:
                                                            log.error(
                                                                '%s is configured but could not be loaded, are pygit2 '
                                                                'and libgit2 installed?', self.role
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 1 other location - About 1 hr to fix
                                            salt/utils/gitfs.py on lines 2525..2534

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 52.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                    if not GITPYTHON_VERSION:
                                                        if not quiet:
                                                            log.error(
                                                                '%s is configured but could not be loaded, is GitPython '
                                                                'installed?', self.role
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 1 other location - About 1 hr to fix
                                            salt/utils/gitfs.py on lines 2572..2581

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 52.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 4 locations. Consider refactoring.
                                            Open

                                                    if not os.path.isdir(hashdir):
                                                        try:
                                                            os.makedirs(hashdir)
                                                        except OSError:
                                                            # Path exists and is a file, remove it and retry
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 3 other locations - About 1 hr to fix
                                            salt/fileserver/hgfs.py on lines 664..670
                                            salt/fileserver/hgfs.py on lines 671..677
                                            salt/utils/gitfs.py on lines 2781..2787

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 50.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 4 locations. Consider refactoring.
                                            Open

                                                    if not os.path.isdir(destdir):
                                                        try:
                                                            os.makedirs(destdir)
                                                        except OSError:
                                                            # Path exists and is a file, remove it and retry
                                            Severity: Major
                                            Found in salt/utils/gitfs.py and 3 other locations - About 1 hr to fix
                                            salt/fileserver/hgfs.py on lines 664..670
                                            salt/fileserver/hgfs.py on lines 671..677
                                            salt/utils/gitfs.py on lines 2788..2794

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 50.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def get_tree_from_tag(self, ref):
                                                    '''
                                                    Return a pygit2.Tree object matching a tag ref fetched into refs/tags/
                                                    '''
                                                    try:
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 55 mins to fix
                                            salt/utils/gitfs.py on lines 1893..1902

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 45.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def get_tree_from_branch(self, ref):
                                                    '''
                                                    Return a pygit2.Tree object matching a head ref fetched into
                                                    refs/remotes/origin/
                                                    '''
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 55 mins to fix
                                            salt/utils/gitfs.py on lines 1904..1912

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 45.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def get_tree_from_tag(self, ref):
                                                    '''
                                                    Return a git.Tree object matching a tag ref fetched into refs/tags/
                                                    '''
                                                    try:
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 40 mins to fix
                                            salt/utils/gitfs.py on lines 1371..1381

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 42.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def __init__(self, opts, remote, per_remote_defaults, per_remote_only,
                                                             override_params, cache_root, role='gitfs'):
                                                    self.provider = 'gitpython'
                                                    super(GitPython, self).__init__(
                                                        opts, remote, per_remote_defaults, per_remote_only,
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 40 mins to fix
                                            salt/utils/gitfs.py on lines 1415..1420

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 42.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def __init__(self, opts, remote, per_remote_defaults, per_remote_only,
                                                             override_params, cache_root, role='gitfs'):
                                                    self.provider = 'pygit2'
                                                    super(Pygit2, self).__init__(
                                                        opts, remote, per_remote_defaults, per_remote_only,
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 40 mins to fix
                                            salt/utils/gitfs.py on lines 1124..1129

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 42.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                def get_tree_from_branch(self, ref):
                                                    '''
                                                    Return a git.Tree object matching a head ref fetched into
                                                    refs/remotes/origin/
                                                    '''
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 40 mins to fix
                                            salt/utils/gitfs.py on lines 1383..1392

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 42.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                    list_cache = salt.utils.path.join(
                                                        self.file_list_cachedir,
                                                        '{0}.p'.format(load['saltenv'].replace(os.path.sep, '_|-'))
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 35 mins to fix
                                            salt/utils/gitfs.py on lines 2945..2947

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 41.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            Similar blocks of code found in 2 locations. Consider refactoring.
                                            Open

                                                    w_lock = salt.utils.path.join(
                                                        self.file_list_cachedir,
                                                        '.{0}.w'.format(load['saltenv'].replace(os.path.sep, '_|-'))
                                            Severity: Minor
                                            Found in salt/utils/gitfs.py and 1 other location - About 35 mins to fix
                                            salt/utils/gitfs.py on lines 2941..2943

                                            Duplicated Code

                                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                            Tuning

                                            This issue has a mass of 41.

                                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                            Refactorings

                                            Further Reading

                                            There are no issues that match your filters.

                                            Category
                                            Status