iterative/dvc

View on GitHub

Showing 517 of 578 total issues

Function _prepare_context has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def _prepare_context(self, data: typing.Mapping) -> list[object]:
        lines: list[object] = []
        for index, error in enumerate(self.exc.errors):
            if index and lines[-1]:
                lines.append("")
Severity: Minor
Found in dvc/utils/strictyaml.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 run has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def run(self):
        try:
            diff = self.repo.experiments.diff(
                a_rev=self.args.a_rev,
                b_rev=self.args.b_rev,
Severity: Minor
Found in dvc/commands/experiments/diff.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 test_update has 35 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def test_update(self, tmp_dir, dvc, remote_worktree):
        (foo_stage,) = tmp_dir.dvc_gen("foo", "foo")
        (data_dir_stage,) = tmp_dir.dvc_gen(
            {
                "data_dir": {
Severity: Minor
Found in dvc/testing/remote_tests.py - About 1 hr to fix

    Function add_parser has 35 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    def add_parser(subparsers, parent_parser):
        from dvc.commands.config import parent_config_parser
    
        REMOTE_HELP = "Set up and manage data remotes."
        remote_parser = subparsers.add_parser(
    Severity: Minor
    Found in dvc/commands/remote.py - About 1 hr to fix

      Function write_json has 11 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def write_json(  # noqa: PLR0913
      Severity: Major
      Found in dvc/ui/__init__.py - About 1 hr to fix

        Function run has 11 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def run(  # noqa: C901, PLR0912
        Severity: Major
        Found in dvc/repo/experiments/run.py - About 1 hr to fix

          Function get has 11 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def get(  # noqa: PLR0913
          Severity: Major
          Found in dvc/repo/artifacts.py - About 1 hr to fix

            Function _data_cells has 11 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def _data_cells(
            Severity: Major
            Found in dvc/repo/experiments/show.py - About 1 hr to fix

              Function ls has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

              def ls(
                  repo,
                  rev: Optional[Union[list[str], str]] = None,
                  all_commits: bool = False,
                  num: int = 1,
              Severity: Minor
              Found in dvc/repo/experiments/ls.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 _can_hash has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

              def _can_hash(stage):
                  if stage.is_callback or stage.always_changed:
                      return False
              
                  if not all([stage.cmd, stage.deps, stage.outs]):
              Severity: Minor
              Found in dvc/stage/cache.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 show has 10 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def show(
              Severity: Major
              Found in dvc/repo/experiments/show.py - About 1 hr to fix

                Function emit has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                    def emit(self, record):
                        """Write to Tqdm's stream so as to not break progress-bars"""
                        try:
                            if record.exc_info:
                                _, exc, *_ = record.exc_info
                Severity: Minor
                Found in dvc/logger.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 pull has 10 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                def pull(  # noqa: C901
                Severity: Major
                Found in dvc/repo/experiments/pull.py - About 1 hr to fix

                  Function create has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def create(
                          self,
                          single_stage: bool = False,
                          validate: bool = True,
                          fname: Optional[str] = None,
                  Severity: Minor
                  Found in dvc/repo/stage.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 push has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def push(  # noqa: PLR0913
                      self,
                      targets=None,
                      jobs=None,
                      remote=None,
                  Severity: Minor
                  Found in dvc/repo/push.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 show has 10 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  def show(
                  Severity: Major
                  Found in dvc/repo/metrics/show.py - About 1 hr to fix

                    Function get has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def get(  # noqa: PLR0913
                            cls,
                            url: str,
                            name: str,
                            version: Optional[str] = None,
                    Severity: Minor
                    Found in dvc/repo/artifacts.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 collect has 10 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    def collect(
                    Severity: Major
                    Found in dvc/repo/experiments/collect.py - About 1 hr to fix

                      Function collect_queued has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                      def collect_queued(
                          repo: "Repo",
                          baseline_revs: Collection[str],
                          **kwargs,
                      ) -> dict[str, list["ExpRange"]]:
                      Severity: Minor
                      Found in dvc/repo/experiments/collect.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 brancher has 10 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                      def brancher(
                      Severity: Major
                      Found in dvc/repo/brancher.py - About 1 hr to fix
                        Severity
                        Category
                        Status
                        Source
                        Language