Bug 1799131 - Adjust test-info manifests to retain ancestor. r=gbrown,asuth
[gecko.git] / testing / mozharness / scripts / raptor_script.py
blob5e3ce2c2a093c379e7f1706130ebc6eb487ce724
1 #!/usr/bin/env python
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
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 """raptor
8 """
10 from __future__ import absolute_import
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.raptor import Raptor
19 if __name__ == "__main__":
20 raptor = Raptor()
21 raptor.run_and_exit()