def TestRunnerFactory(device, shard_index): if str(device) in active_devices: return test_runner.TestRunner(test_options, device, shard_index, len(all_devices), steps_dict, flaky_steps) return None
def TestRunnerFactory(device, shard_index): return test_runner.TestRunner(test_options, device, shard_index, len(all_devices), steps_dict, flaky_steps)
def TestRunnerFactory(device, _shard_index): return test_runner.TestRunner(test_options, device, tests_dict, flaky_steps)