Update admin seed validation and test harness
TaxBaik CI/CD / build-and-deploy (push) Successful in 3m6s

This commit is contained in:
2026-07-08 00:04:41 +09:00
parent f16634ec68
commit 426f38b842
3 changed files with 26 additions and 2 deletions
+2 -2
View File
@@ -115,8 +115,8 @@ def main():
test_env["E2E_BASE_URL"] = base_url
test_env["EVIDENCE_ROOT"] = "evidence"
# Set default test credentials
test_env["E2E_ADMIN_USERNAME"] = "admin"
test_env["E2E_ADMIN_PASSWORD"] = "Admin123!@#456"
test_env["E2E_ADMIN_USERNAME"] = os.environ.get("E2E_ADMIN_USERNAME", "admin")
test_env["E2E_ADMIN_PASSWORD"] = os.environ.get("E2E_ADMIN_PASSWORD", "")
# Run playwright test command
# Local 1차 검증은 Desktop Chrome만 대상으로 잡아 불필요한 브라우저 설치 의존을 줄인다.