diff --git a/envs/monkey_zoo/blackbox/log_handlers/test_logs_handler.py b/envs/monkey_zoo/blackbox/log_handlers/test_logs_handler.py index 55a242bec..026bf917f 100644 --- a/envs/monkey_zoo/blackbox/log_handlers/test_logs_handler.py +++ b/envs/monkey_zoo/blackbox/log_handlers/test_logs_handler.py @@ -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 diff --git a/envs/monkey_zoo/blackbox/test_configurations/test_configuration.py b/envs/monkey_zoo/blackbox/test_configurations/test_configuration.py index 290af53b9..1bbfec7fd 100644 --- a/envs/monkey_zoo/blackbox/test_configurations/test_configuration.py +++ b/envs/monkey_zoo/blackbox/test_configurations/test_configuration.py @@ -7,5 +7,6 @@ from common.credentials import Credentials @dataclass class TestConfiguration: + __test__ = False agent_configuration: AgentConfiguration propagation_credentials: Tuple[Credentials, ...]