kiwitcms/Kiwi

View on GitHub

Showing 104 of 405 total issues

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

                if (element.id in componentsPerCase) {
                    element.component_names = componentsPerCase[element.id]
                } else {
                    element.component_names = []
                }
Severity: Major
Found in tcms/testcases/static/testcases/js/search.js and 3 other locations - About 45 mins to fix
tcms/testcases/static/testcases/js/search.js on lines 45..49
tcms/testplans/static/testplans/js/search.js on lines 36..40
tcms/testruns/static/testruns/js/search.js on lines 37..41

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 (element.id in tagsPerPlan) {
                element.tag = tagsPerPlan[element.id]
            } else {
                element.tag = []
            }
Severity: Major
Found in tcms/testplans/static/testplans/js/search.js and 3 other locations - About 45 mins to fix
tcms/testcases/static/testcases/js/search.js on lines 45..49
tcms/testcases/static/testcases/js/search.js on lines 51..55
tcms/testruns/static/testruns/js/search.js on lines 37..41

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 (element.id in tagsPerRun) {
                    element.tag = tagsPerRun[element.id]
                } else {
                    element.tag = []
                }
Severity: Major
Found in tcms/testruns/static/testruns/js/search.js and 3 other locations - About 45 mins to fix
tcms/testcases/static/testcases/js/search.js on lines 45..49
tcms/testcases/static/testcases/js/search.js on lines 51..55
tcms/testplans/static/testplans/js/search.js on lines 36..40

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 (element.id in tagsPerCase) {
                    element.tag_names = tagsPerCase[element.id]
                } else {
                    element.tag_names = []
                }
Severity: Major
Found in tcms/testcases/static/testcases/js/search.js and 3 other locations - About 45 mins to fix
tcms/testcases/static/testcases/js/search.js on lines 51..55
tcms/testplans/static/testplans/js/search.js on lines 36..40
tcms/testruns/static/testruns/js/search.js on lines 37..41

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 5 locations. Consider refactoring.
Open

    if plan.emailing.auto_to_case_owner:
        case_authors = plan.cases.values_list("author__email", flat=True)
        recipients.update(case_authors)  # pylint: disable=objects-update-used
Severity: Major
Found in tcms/testplans/helpers/email.py and 4 other locations - About 40 mins to fix
tcms/testcases/helpers/email.py on lines 39..41
tcms/testcases/helpers/email.py on lines 43..47
tcms/testcases/helpers/email.py on lines 49..51
tcms/testplans/helpers/email.py on lines 24..26

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

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 5 locations. Consider refactoring.
Open

    if case.emailing.auto_to_run_tester:
        run_testers = case.executions.values_list(
            "run__default_tester__email", flat=True
        )
        recipients.update(run_testers)  # pylint: disable=objects-update-used
Severity: Major
Found in tcms/testcases/helpers/email.py and 4 other locations - About 40 mins to fix
tcms/testcases/helpers/email.py on lines 39..41
tcms/testcases/helpers/email.py on lines 49..51
tcms/testplans/helpers/email.py on lines 20..22
tcms/testplans/helpers/email.py on lines 24..26

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

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 5 locations. Consider refactoring.
Open

    if case.emailing.auto_to_execution_assignee:
        assignees = case.executions.values_list("assignee__email", flat=True)
        recipients.update(assignees)  # pylint: disable=objects-update-used
Severity: Major
Found in tcms/testcases/helpers/email.py and 4 other locations - About 40 mins to fix
tcms/testcases/helpers/email.py on lines 39..41
tcms/testcases/helpers/email.py on lines 43..47
tcms/testplans/helpers/email.py on lines 20..22
tcms/testplans/helpers/email.py on lines 24..26

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

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 5 locations. Consider refactoring.
Open

    if plan.emailing.auto_to_case_default_tester:
        case_testers = plan.cases.values_list("default_tester__email", flat=True)
        recipients.update(case_testers)  # pylint: disable=objects-update-used
Severity: Major
Found in tcms/testplans/helpers/email.py and 4 other locations - About 40 mins to fix
tcms/testcases/helpers/email.py on lines 39..41
tcms/testcases/helpers/email.py on lines 43..47
tcms/testcases/helpers/email.py on lines 49..51
tcms/testplans/helpers/email.py on lines 20..22

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

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 5 locations. Consider refactoring.
Open

    if case.emailing.auto_to_run_manager:
        managers = case.executions.values_list("run__manager__email", flat=True)
        recipients.update(managers)  # pylint: disable=objects-update-used
Severity: Major
Found in tcms/testcases/helpers/email.py and 4 other locations - About 40 mins to fix
tcms/testcases/helpers/email.py on lines 43..47
tcms/testcases/helpers/email.py on lines 49..51
tcms/testplans/helpers/email.py on lines 20..22
tcms/testplans/helpers/email.py on lines 24..26

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

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 10 locations. Consider refactoring.
Open

    if (dateAfter.val()) {
        query.stop_date__gte = dateAfter.data('DateTimePicker').date().format('YYYY-MM-DD 00:00:00')
    }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/execution-trends.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

    if (dateAfter.val()) {
        query.stop_date__gte = dateAfter.data('DateTimePicker').date().format('YYYY-MM-DD 00:00:00')
    }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/status-matrix.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

            if (dateBefore.val()) {
                query.stop_date__lte = dateBefore.data('DateTimePicker').date().format('YYYY-MM-DD 23:59:59')
            }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/test-case-health.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

            if (dateBefore.val()) {
                query.stop_date__lte = dateBefore.data('DateTimePicker').date().format('YYYY-MM-DD 23:59:59')
            }
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

    if (dateBefore.val()) {
        query.stop_date__lte = dateBefore.data('DateTimePicker').date().format('YYYY-MM-DD 23:59:59')
    }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/execution-trends.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

    if (dateBefore.val()) {
        query.stop_date__lte = dateBefore.data('DateTimePicker').date().format('YYYY-MM-DD 23:59:59')
    }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/status-matrix.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

            if (dateAfter.val()) {
                query.stop_date__gte = dateAfter.data('DateTimePicker').date().format('YYYY-MM-DD 00:00:00')
            }
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 36..38

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

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 10 locations. Consider refactoring.
Open

            if (dateAfter.val()) {
                query.stop_date__gte = dateAfter.data('DateTimePicker').date().format('YYYY-MM-DD 00:00:00')
            }
Severity: Major
Found in tcms/telemetry/static/telemetry/js/testing/test-case-health.js and 9 other locations - About 40 mins to fix
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 22..24
tcms/telemetry/static/telemetry/js/testing/breakdown.js on lines 27..29
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 47..49
tcms/telemetry/static/telemetry/js/testing/execution-dashboard.js on lines 52..54
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 28..30
tcms/telemetry/static/telemetry/js/testing/execution-trends.js on lines 33..35
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 77..79
tcms/telemetry/static/telemetry/js/testing/status-matrix.js on lines 82..84
tcms/telemetry/static/telemetry/js/testing/test-case-health.js on lines 31..33

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

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

Avoid too many return statements within this function.
Open

        return HttpResponseRedirect(request.META.get("HTTP_REFERER", "/"))
Severity: Major
Found in tcms/testcases/views.py - About 30 mins to fix

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

        document.getElementById('id_version').onchange = function () {
            $('#id_version').selectpicker('refresh')
            populateBuild()
        }
    Severity: Major
    Found in tcms/bugs/static/bugs/js/mutable.js and 3 other locations - About 30 mins to fix
    tcms/bugs/static/bugs/js/mutable.js on lines 20..23
    tcms/testcases/static/testcases/js/mutable.js on lines 25..28
    tcms/testplans/static/testplans/js/mutable.js on lines 19..22

    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 4 locations. Consider refactoring.
    Open

        document.getElementById('id_product').onchange = function () {
            $('#id_product').selectpicker('refresh')
            populateVersion()
        }
    Severity: Major
    Found in tcms/testplans/static/testplans/js/mutable.js and 3 other locations - About 30 mins to fix
    tcms/bugs/static/bugs/js/mutable.js on lines 20..23
    tcms/bugs/static/bugs/js/mutable.js on lines 25..28
    tcms/testcases/static/testcases/js/mutable.js on lines 25..28

    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

    Severity
    Category
    Status
    Source
    Language