Skip to content

Commit 5322a1a

Browse files
committed
Mark some classes with __test__ = False
1 parent 4e4c899 commit 5322a1a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/unit/searchcommands/test_decorators.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232

3333
@Configuration()
3434
class TestSearchCommand(SearchCommand):
35+
__test__ = False
36+
3537
boolean = Option(
3638
doc="""
3739
**Syntax:** **boolean=***<value>*

tests/unit/searchcommands/test_search_command.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def build_command_input(getinfo_metadata, execute_metadata, execute_body):
5050

5151
@Configuration()
5252
class TestCommand(SearchCommand):
53+
__test__ = False
54+
5355
required_option_1 = Option(require=True)
5456
required_option_2 = Option(require=True)
5557

0 commit comments

Comments
 (0)