forked from p15670423/monkey
BB: Add __test__ to some untestable classes
This commit is contained in:
parent
7ccab8e2f2
commit
85deb6858c
|
@ -10,6 +10,8 @@ LOGGER = logging.getLogger(__name__)
|
|||
|
||||
|
||||
class TestLogsHandler(object):
|
||||
__test__ = False
|
||||
|
||||
def __init__(self, test_name, island_client, log_dir_path):
|
||||
self.test_name = test_name
|
||||
self.island_client = island_client
|
||||
|
|
|
@ -7,5 +7,6 @@ from common.credentials import Credentials
|
|||
|
||||
@dataclass
|
||||
class TestConfiguration:
|
||||
__test__ = False
|
||||
agent_configuration: AgentConfiguration
|
||||
propagation_credentials: Tuple[Credentials, ...]
|
||||
|
|
Loading…
Reference in New Issue