diff --git a/tests/searchcommands/test_decorators.py b/tests/searchcommands/test_decorators.py index 533150ff..688191b7 100755 --- a/tests/searchcommands/test_decorators.py +++ b/tests/searchcommands/test_decorators.py @@ -32,6 +32,8 @@ @Configuration() class TestSearchCommand(SearchCommand): + __test__ = False + boolean = Option( doc=""" **Syntax:** **boolean=**** diff --git a/tests/searchcommands/test_internals_v2.py b/tests/searchcommands/test_internals_v2.py index 0a935b9e..314a55ef 100755 --- a/tests/searchcommands/test_internals_v2.py +++ b/tests/searchcommands/test_internals_v2.py @@ -300,6 +300,8 @@ def _load_chunks(self, ifile): class TestRecorder: + __test__ = False + def __init__(self, test_case): self._test_case = test_case self._output = None @@ -389,6 +391,8 @@ def _record(*args, **kwargs): class Test: + __test__ = False + def __init__(self, fieldnames, data_generators): TestCase.__init__(self) self._data_generators = list( diff --git a/tests/searchcommands/test_search_command.py b/tests/searchcommands/test_search_command.py index 7e154210..46097de7 100755 --- a/tests/searchcommands/test_search_command.py +++ b/tests/searchcommands/test_search_command.py @@ -55,6 +55,8 @@ def build_command_input(getinfo_metadata, execute_metadata, execute_body): @Configuration() class TestCommand(SearchCommand): + __test__ = False + required_option_1 = Option(require=True) required_option_2 = Option(require=True) @@ -99,6 +101,8 @@ class ConfigurationSettings(SearchCommand.ConfigurationSettings): @Configuration() class TestStreamingCommand(StreamingCommand): + __test__ = False + def stream(self, records): serial_number = 0 for record in records: