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