From edda3998dcd31d762e91e390f6bd4f35a9e956f4 Mon Sep 17 00:00:00 2001 From: jonghyeokFF Date: Wed, 6 May 2026 23:41:02 +0900 Subject: [PATCH] =?UTF-8?q?feat(config):=20=ED=99=98=EA=B2=BD=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit APP_ACTIVITY 환경변수화, Android noReset False→True, APPIUM_URL /wd/hub 제거 Co-Authored-By: Claude Sonnet 4.6 --- fastfive-auto-app-dev/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastfive-auto-app-dev/config.py b/fastfive-auto-app-dev/config.py index a936e52..efb6066 100644 --- a/fastfive-auto-app-dev/config.py +++ b/fastfive-auto-app-dev/config.py @@ -11,9 +11,9 @@ 'platformName': 'Android', 'appium:deviceName': os.environ.get("DEVICE_NAME", "emulator-5554"), 'appium:appPackage': os.environ.get("APP_PACKAGE", "com.fastfive.work.staging"), - 'appium:appActivity': 'com.fastfive.work.MainActivity', + 'appium:appActivity': os.environ.get("APP_ACTIVITY", "com.fastfive.work.MainActivity"), 'appium:automationName': 'UiAutomator2', - 'appium:noReset': False + 'appium:noReset': True } # iOS 설정 @@ -30,7 +30,7 @@ 'appium:useNewWDA': True } -APPIUM_URL = os.environ.get("APPIUM_URL", "http://127.0.0.1:4723/wd/hub") +APPIUM_URL = os.environ.get("APPIUM_URL", "http://127.0.0.1:4723") # 테스트 계정 if PLATFORM == "ios":