Turn off appium server by default

This commit is contained in:
butomo1989
2017-04-21 15:18:01 +02:00
parent 7ce3cfba96
commit e59c28ebd8
4 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ def run():
cmd = 'emulator -avd {name}'.format(name=avd_name)
subprocess.Popen(cmd.split())
appium = str_to_bool(str(os.getenv('APPIUM', True)))
appium = str_to_bool(str(os.getenv('APPIUM', False)))
if appium:
logger.info('Run appium server...')
appium_run(avd_name)