summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/management/commands/perf.py
diff options
context:
space:
mode:
authorAlexandru Damian <alexandru.damian@intel.com>2015-08-18 17:28:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-19 18:05:55 +0100
commitc9455a7484fa5ead1a90e40b78512867b4285020 (patch)
tree152a114ce3e7e528d3b3c0331c39e737b6bafd7d /bitbake/lib/toaster/toastermain/management/commands/perf.py
parent07b58c97342d4f2efff80891981e8ee63dd198d0 (diff)
downloadpoky-c9455a7484fa5ead1a90e40b78512867b4285020.tar.gz
bitbake: toaster: fix pylint errors
Prompted by issues discovered during running pylint on the toaster sources, this patch fixes: * missing import in toaster ui * improper call of function in toaster ui (logger.debug) * improper function definitions in bbcontroller * invalid references to objects in bldcontrol.models * proper initialization of object fields in ToasterTables Also inhibiting specific pylint errors in files where the problems are mis-identified. (Bitbake rev: 1c71955c416fb68455f7f70669aba4202c411807) Signed-off-by: Alexandru Damian <alexandru.damian@intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastermain/management/commands/perf.py')
-rw-r--r--bitbake/lib/toaster/toastermain/management/commands/perf.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastermain/management/commands/perf.py b/bitbake/lib/toaster/toastermain/management/commands/perf.py
index d28f26ab16..71a48e95d8 100644
--- a/bitbake/lib/toaster/toastermain/management/commands/perf.py
+++ b/bitbake/lib/toaster/toastermain/management/commands/perf.py
@@ -2,7 +2,12 @@ from django.core.management.base import BaseCommand
2from django.test.client import Client 2from django.test.client import Client
3import os, sys, re 3import os, sys, re
4import requests 4import requests
5import toastermain.settings as settings 5from django.conf import settings
6
7# pylint: disable=E1103
8# Instance of 'WSGIRequest' has no 'status_code' member
9# (but some types could not be inferred) (maybe-no-member)
10
6 11
7class Command(BaseCommand): 12class Command(BaseCommand):
8 help = "Test the response time for all toaster urls" 13 help = "Test the response time for all toaster urls"