25 lines
457 B
Python
25 lines
457 B
Python
"""
|
|
go_ios Package
|
|
|
|
Provides Python utilities for interacting with the go_ios command line tool.
|
|
go_ios is used for running iOS xctest bundles like Fastbot and WebDriverAgent.
|
|
"""
|
|
|
|
from .go_ios_runner import (
|
|
get_ios_executable,
|
|
run_xctest,
|
|
start_fastbot,
|
|
start_wda,
|
|
stop_process,
|
|
GoIOSRunner,
|
|
)
|
|
|
|
__all__ = [
|
|
'get_ios_executable',
|
|
'run_xctest',
|
|
'start_fastbot',
|
|
'start_wda',
|
|
'stop_process',
|
|
'GoIOSRunner',
|
|
]
|