src/tests/utils.py

Summary

Maintainability
B
5 hrs
Test Coverage

File utils.py has 488 lines of code (exceeds 400 allowed). Consider refactoring.
Open

import datetime
import functools
import importlib
import os
import random
Severity: Minor
Found in src/tests/utils.py - About 4 hrs to fix

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

        def __init__(
    Severity: Major
    Found in src/tests/utils.py - About 50 mins to fix

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

          def target_base(self):
              # walk target path until can no longer import it as a module path
              for index in range(len(self.target_path)):
                  path_parts = self.target_path[: (index + 1)]
                  import_path = ".".join(path_parts)
      Severity: Minor
      Found in src/tests/utils.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

      Line too long (93 > 88 characters)
      Open

              "create table zip_code_demographics (zip_code text, ethnicity text, as_of_date date)"
      Severity: Minor
      Found in src/tests/utils.py by pep8

      Limit all lines to a maximum of 79 characters.

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

      Line too long (93 > 88 characters)
      Open

              project_storage (triage.component.catwalk.storage.ProjectStorage) A project's storage
      Severity: Minor
      Found in src/tests/utils.py by pep8

      Limit all lines to a maximum of 79 characters.

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

      Line too long (99 > 88 characters)
      Open

              matrix (dataframe, optional): A matrix to store. Defaults to the output of matrix_creator()
      Severity: Minor
      Found in src/tests/utils.py by pep8

      Limit all lines to a maximum of 79 characters.

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

      Line too long (103 > 88 characters)
      Open

              "from_obj_query": "select * from zip_code_demographics join entity_zip_codes using (zip_code)",
      Severity: Minor
      Found in src/tests/utils.py by pep8

      Limit all lines to a maximum of 79 characters.

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

      There are no issues that match your filters.

      Category
      Status