Bug 1907460 - Disable overflow/underflow events in release r=emilio,extension-reviewe...
[gecko.git] / testing / mozharness / scripts / talos_script.py
blob10e441070c115c897718865a9c543f98fb220d5b
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
9 """
11 import os
12 import sys
14 # load modules from parent dir
15 sys.path.insert(1, os.path.dirname(sys.path[0]))
17 from mozharness.mozilla.testing.talos import Talos
19 if __name__ == "__main__":
20 talos = Talos()
21 talos.run_and_exit()