tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

cli_functional.py (578B)


      1 #!/usr/bin/env python
      2 
      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 
      7 from marionette_harness.runtests import cli as mn_cli
      8 
      9 from firefox_ui_harness.arguments import FirefoxUIArguments
     10 from firefox_ui_harness.runners import FirefoxUITestRunner
     11 
     12 
     13 def cli(args=None):
     14    mn_cli(
     15        runner_class=FirefoxUITestRunner,
     16        parser_class=FirefoxUIArguments,
     17        args=args,
     18    )
     19 
     20 
     21 if __name__ == "__main__":
     22    cli()