(
config: Config,
train_step_time_list: List[int],
explore_step_time_list: List[int],
)
| 96 | |
| 97 | |
| 98 | def run_both( |
| 99 | config: Config, |
| 100 | train_step_time_list: List[int], |
| 101 | explore_step_time_list: List[int], |
| 102 | ) -> None: |
| 103 | ray.init(ignore_reinit_error=True, namespace=config.ray_namespace) |
| 104 | trainer_monkey_patch(train_step_time_list) |
| 105 | explorer_monkey_patch(explore_step_time_list) |
| 106 | both(config) |
| 107 | ray.shutdown() |
| 108 | |
| 109 | |
| 110 | class BaseTestSynchronizer(unittest.TestCase): |
nothing calls this directly
no test coverage detected