From 703a826ddf274869ae08506472fd3ad8c0bbc022 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 2 Oct 2020 12:24:31 +0000 Subject: [PATCH] Added a comment to explain the lack of skipIf() for a test class. - Legacy-Id: 18545 --- ietf/meeting/tests_js.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/meeting/tests_js.py b/ietf/meeting/tests_js.py index c840153a1..1022ddca1 100644 --- a/ietf/meeting/tests_js.py +++ b/ietf/meeting/tests_js.py @@ -59,6 +59,7 @@ def start_web_driver(): options.add_argument("no-sandbox") # docker needs this return webdriver.Chrome(options=options, service_log_path=settings.TEST_GHOSTDRIVER_LOG_PATH) +# This class is subclassed later, and does not contain any tests, so doesn't need @skipIf() class MeetingTestCase(IetfLiveServerTestCase): def __init__(self, *args, **kwargs): super(MeetingTestCase, self).__init__(*args, **kwargs)