2014-09-04 15:52:43 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2014-11-20 19:30:00 +03:00
|
|
|
import os
|
2014-09-04 15:52:43 +04:00
|
|
|
import sys
|
|
|
|
|
2014-11-20 19:30:00 +03:00
|
|
|
here = os.path.split(os.path.abspath(__file__))[0]
|
2017-05-18 20:50:08 +03:00
|
|
|
sys.path.insert(0, os.path.join(here, "tests", "tools", "wptrunner"))
|
2014-11-20 19:30:00 +03:00
|
|
|
|
2014-09-04 15:52:43 +04:00
|
|
|
from wptrunner import wptrunner
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2015-05-28 20:24:11 +03:00
|
|
|
rv = wptrunner.main()
|
|
|
|
sys.exit(rv)
|