Showing 112 of 403 total issues
Function update
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def update(execution_id, values, **kwargs):
"""
.. function:: RPC TestExecution.update(execution_id, values)
Update the selected TestExecution
- Read upRead up
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 save_model
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def save_model(self, request, obj, form, change):
super().save_model(request, obj, form, change)
# try health check
bug_url = form.cleaned_data["hc_bug_url"]
if bug_url:
- Read upRead up
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 post
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def post(self, request):
if not self._is_request_data_valid(request):
return HttpResponseRedirect(request.META.get("HTTP_REFERER", "/"))
# Do the clone action
- Read upRead up
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 quickSearchAndAddTestCase
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export function quickSearchAndAddTestCase (objId, pageCallback, cache, initialQuery = {}) {
// + button
$('#btn-add-case').click(function () {
pageCallback(objId)
- Read upRead up
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 testPlanAutoComplete
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export function testPlanAutoComplete (selector, planCache) {
$(`${selector}.typeahead`).typeahead({
minLength: 1,
highlight: true
}, {
- Read upRead up
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 post
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def post(self, request):
form = NewRunForm(data=request.POST)
form.populate(request.POST.get("plan"))
if form.is_valid():
- Read upRead up
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 create_execution
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def create_execution( # pylint: disable=too-many-arguments,too-many-positional-arguments
Function add_attachment
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def add_attachment(obj_id, app_model, user, filename, b64content):
Function assign_default_group_permissions
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def assign_default_group_permissions(
Function renderCommentsForObject
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
export function renderCommentsForObject (objId, getMethod, deleteMethod, canDelete, parentNode) {
Function propertiesCard
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
export function propertiesCard (objectId, objectAttrName, viewMethod, addMethod, removeMethod) {
Function updateSelect
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
export function updateSelect (data, selector, idAttr, valueAttr, groupAttr) {
Function addPropertyValue
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
export function addPropertyValue (objectId, objectAttrName, viewMethod, addMethod, removeMethod) {
Function diff_objects
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def diff_objects(old_instance, new_instance, fields):
"""
Diff two objects by examining the given fields and
return a string.
"""
- Read upRead up
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 post
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def post(self, request): # pylint: disable=no-self-use
form = BugCommentForm(request.POST)
request_action = request.POST.get("action")
if form.is_valid():
- Read upRead up
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 drawChart
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function drawChart () {
const query = {}
const productIds = $('#id_product').val()
if (productIds.length) {
- Read upRead up
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 selectedPlanIds
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function selectedPlanIds () {
const selectedIds = $('#id_test_plan').val()
const childIds = []
// search for children of each selected TP
- Read upRead up
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 visit_attribute
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def visit_attribute(self, node):
# looking for .extra(select={}) patterns
if node.attrname == "extra" and isinstance(node.parent, astroid.Call):
for keyword in node.parent.keywords:
if keyword.arg in [
- Read upRead up
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 assign_default_group_permissions
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def assign_default_group_permissions(
output=None,
refresh_all=False,
group_model=Group,
admin_permissions_filter=None,
- Read upRead up
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 update
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def update(case_id, values):
"""
.. function:: RPC TestCase.update(case_id, values)
Update the fields of the selected test case.
- Read upRead up
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"