1#!/usr/bin/env python 2# ***** BEGIN LICENSE BLOCK ***** 3# This Source Code Form is subject to the terms of the Mozilla Public 4# License, v. 2.0. If a copy of the MPL was not distributed with this file, 5# You can obtain one at http://mozilla.org/MPL/2.0/. 6# ***** END LICENSE BLOCK ***** 7"""talos 8 9""" 10 11import os 12import sys 13 14# load modules from parent dir 15sys.path.insert(1, os.path.dirname(sys.path[0])) 16 17from mozharness.mozilla.testing.talos import Talos 18 19if __name__ == '__main__': 20 talos = Talos() 21 talos.run_and_exit() 22