SERVER-68593 Disable low value python warnings

This commit is contained in:
Alexander Neben
2022-09-02 21:56:05 +00:00
committed by Evergreen Agent
parent d4d4a26801
commit 97ac02fa50
177 changed files with 301 additions and 639 deletions

View File

@@ -15,9 +15,8 @@ class CPPLibfuzzerTestCase(interface.ProcessTestCase):
REGISTERED_NAME = "cpp_libfuzzer_test"
DEFAULT_TIMEOUT = datetime.timedelta(hours=1)
def __init__( # pylint: disable=too-many-arguments
self, logger, program_executable, program_options=None, runs=1000000,
corpus_directory_stem="corpora"):
def __init__(self, logger, program_executable, program_options=None, runs=1000000,
corpus_directory_stem="corpora"):
"""Initialize the CPPLibfuzzerTestCase with the executable to run."""
interface.ProcessTestCase.__init__(self, logger, "C++ libfuzzer test", program_executable)