topic2k/pygcgen

View on GitHub
pygcgen/generator.py

Summary

Maintainability
F
6 days
Test Coverage

File generator.py has 926 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-

from __future__ import division, print_function

import copy
Severity: Major
Found in pygcgen/generator.py - About 2 days to fix

    Generator has 52 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Generator(object):
        """
        A Generator responsible for all logic, related with
        change log generation from ready-to-parse issues.
        """
    Severity: Major
    Found in pygcgen/generator.py - About 7 hrs to fix

      Function fetch_tags_dates has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          def fetch_tags_dates(self):
              """ Async fetching of all tags dates. """
      
              if self.options.verbose:
                  print(
      Severity: Minor
      Found in pygcgen/generator.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 filter_merged_pull_requests has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def filter_merged_pull_requests(self, pull_requests):
              """
              This method filter only merged PR and fetch missing required
              attributes for pull requests. Using merged date is more correct
              than closed date.
      Severity: Minor
      Found in pygcgen/generator.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 detect_actual_closed_dates has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

          def detect_actual_closed_dates(self, issues, kind):
              """
              Find correct closed dates, if issues was closed by commits.
      
              :param list issues: issues to check
      Severity: Minor
      Found in pygcgen/generator.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 parse_by_sections_for_issues has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_by_sections_for_issues(self, issues, sections_a, issues_a):
              for section, sect_labels in self.options.sections.items():
                  added_issues = []
                  for issue in issues:
                      is_labels = issue.get('labels')
      Severity: Minor
      Found in pygcgen/generator.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 parse_by_sections_for_pr has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_by_sections_for_pr(self, pull_requests, sections_a):
              for section, sect_labels in self.options.sections.items():
                  added_pull_requests = []
                  for pr in pull_requests:
                      pr_labels = pr.get('labels')
      Severity: Minor
      Found in pygcgen/generator.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 remove_issues_in_milestones has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def remove_issues_in_milestones(self, filtered_issues):
              """
              :param list(dict) filtered_issues: Filtered issues.
              :rtype: list(dict)
              :return: List with removed issues, that contain milestones with
      Severity: Minor
      Found in pygcgen/generator.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 exclude_issues_by_labels has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          def exclude_issues_by_labels(self, issues):
              """
              Delete all issues with labels from exclude-labels option.
      
              :param list(dict) issues: All issues for tag.
      Severity: Minor
      Found in pygcgen/generator.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 filter_between_tags has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def filter_between_tags(self, all_tags):
              """
              Filter tags according between_tags option.
      
              :param list(dict) all_tags: Pre-filtered tags.
      Severity: Minor
      Found in pygcgen/generator.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 delete_by_time has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def delete_by_time(self, issues, older_tag, newer_tag):
              """
              Filter issues that belong to specified tag range.
      
              :param list(dict) issues: Issues to filter.
      Severity: Minor
      Found in pygcgen/generator.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 generate_header has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def generate_header(self, newer_tag_name, newer_tag_link,
      Severity: Minor
      Found in pygcgen/generator.py - About 35 mins to fix

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

            def last_older_tag(self):
                older_tag = {"name": self.get_temp_tag_for_repo_creation()}
                if self.options.between_tags or self.options.since_tag:
                    older_tag_date = self.get_time_of_tag(older_tag)
                    newer_tag_date = self.get_time_of_tag(self.filtered_tags[-1])
        Severity: Minor
        Found in pygcgen/generator.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 filter_wo_labels has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def filter_wo_labels(self, all_issues):
                """
                Filter all issues that don't have a label.
        
                :rtype: list(dict)
        Severity: Minor
        Found in pygcgen/generator.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 generate_header has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def generate_header(self, newer_tag_name, newer_tag_link,
                                newer_tag_time,
                                older_tag_link, project_url):
                """
                Generate a header for a tag section with specific parameters.
        Severity: Minor
        Found in pygcgen/generator.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 find_issues_to_add has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def find_issues_to_add(all_issues, tag_name):
                """
                Add all issues, that should be in that tag, according to milestone.
        
                :param list(dict) all_issues: All issues.
        Severity: Minor
        Found in pygcgen/generator.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 generate_log_for_all_tags has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def generate_log_for_all_tags(self):
                """
                The full cycle of generation for whole project.
        
                :rtype: str
        Severity: Minor
        Found in pygcgen/generator.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 find_closed_date_by_commit has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def find_closed_date_by_commit(self, issue):
                """
                Fill "actual_date" parameter of specified issue by closed date of
                the commit, if it was closed by commit.
        
        
        Severity: Minor
        Found in pygcgen/generator.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

        TODO found
        Open

                    # TODO: why did i add this? Is it needed?
        Severity: Minor
        Found in pygcgen/generator.py by fixme

        TODO found
        Open

                    # TODO: assert issues, that remain without
        Severity: Minor
        Found in pygcgen/generator.py by fixme

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

                        if is_labels:
                            is_lbls = set(l["name"] for l in is_labels)
                            if is_lbls.intersection(set(sect_labels)):
                                sections_a[section].append(issue)
                                added_issues.append(issue)
        Severity: Major
        Found in pygcgen/generator.py and 1 other location - About 3 hrs to fix
        pygcgen/generator.py on lines 614..619

        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 66.

        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 pr_labels:
                            pr_lbls = set(l["name"] for l in pr_labels)
                            if pr_lbls.intersection(set(sect_labels)):
                                sections_a[section].append(pr)
                                added_pull_requests.append(pr)
        Severity: Major
        Found in pygcgen/generator.py and 1 other location - About 3 hrs to fix
        pygcgen/generator.py on lines 598..603

        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 66.

        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

                try:
                    idx = tag_names.index(tag)
                except ValueError:
                    self.warn_if_tag_not_found(tag, "since-tag")
                    return copy.deepcopy(all_tags)
        Severity: Minor
        Found in pygcgen/generator.py and 1 other location - About 55 mins to fix
        pygcgen/generator.py on lines 1022..1026

        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 37.

        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

                try:
                    idx = tag_names.index(tag)
                except ValueError:
                    self.warn_if_tag_not_found(tag, "due-tag")
                    return copy.deepcopy(all_tags)
        Severity: Minor
        Found in pygcgen/generator.py and 1 other location - About 55 mins to fix
        pygcgen/generator.py on lines 996..1000

        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 37.

        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

                for t in all_tags:
                    tag_date = self.get_time_of_tag(t)
                    if tag_date <= due_date:
                        filtered_tags.append(t)
        Severity: Minor
        Found in pygcgen/generator.py and 1 other location - About 50 mins to fix
        pygcgen/generator.py on lines 1004..1007

        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 36.

        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

                for t in all_tags:
                    tag_date = self.get_time_of_tag(t)
                    if since_date <= tag_date:
                        filtered_tags.append(t)
        Severity: Minor
        Found in pygcgen/generator.py and 1 other location - About 50 mins to fix
        pygcgen/generator.py on lines 1030..1033

        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 36.

        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