summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastermain/management/commands/perf.py
diff options
context:
space:
mode:
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"