ionelmc/python-hunter

View on GitHub
src/hunter/__init__.py

Summary

Maintainability
D
1 day
Test Coverage

File __init__.py has 447 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import atexit
import functools
import inspect
import os
import sys
Severity: Minor
Found in src/hunter/__init__.py - About 6 hrs to fix

    Function Q has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
    Open

    def Q(*predicates, **query):
        """
        Helper that handles situations where :class:`hunter.predicates.Query` objects (or other callables)
        are passed in as positional arguments - it conveniently converts those to a
        :class:`hunter.predicates.And` predicate.
    Severity: Minor
    Found in src/hunter/__init__.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 wrap has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

    def wrap(function_to_trace=None, **trace_options):
        """
        Functions decorated with this will be traced.
    
        Use ``local=True`` to only trace local code, eg::
    Severity: Minor
    Found in src/hunter/__init__.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 _prepare_config has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _prepare_config(*args, **kwargs):
        _default_config.clear()
        _default_config.update((key.lower(), val) for key, val in kwargs.items())
        options = {}
        predicates = []
    Severity: Minor
    Found in src/hunter/__init__.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 _flatten has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

    def _flatten(cls, predicate, *predicates):
        if not predicates:
            return predicate
        else:
            all_predicates = []
    Severity: Minor
    Found in src/hunter/__init__.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 trace has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    def trace(*predicates, **options):
        """
        Starts tracing. Can be used as a context manager (with slightly incorrect semantics - it starts tracing
        before ``__enter__`` is called).
    
    
    Severity: Minor
    Found in src/hunter/__init__.py - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    There are no issues that match your filters.

    Category
    Status