blob: 6bba6a55e3ae179c862d8ea4cf4aa7cf222d21a5 [file] [log] [blame]
#!/usr/bin/env vpython
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Triggers and processes results from flag try jobs.
For more information, see: http://bit.ly/flag-try-jobs
"""
import sys
from blinkpy.web_tests import try_flag
if __name__ == '__main__':
sys.exit(try_flag.main())