def main()

in annotated_steps.py [0:0]


def main():
  bot_info = GetBotInfo()

  print 'Bot info: %s' % bot_info
  copy_path = GetPackageCopy(bot_info)
  config_file = os.path.join(copy_path, '.test_config')
  test_config = config_parser.ConfigParser(config_file)
  test_config.replacements = {
    'dart': utils.CheckedInSdkExecutable(),
    'project_root': copy_path,
    'python': sys.executable
  }

  RunCustomScript(test_config) or \
    RunDefaultScript(bot_info, test_config, copy_path)