From c2a0b221b1bfa6e9a39b337d2110ae88d84d8f3f Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Sat, 10 Jan 2026 14:11:08 +0900 Subject: [PATCH] test: stabilize db_migration_disable_update_check test log check --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f9d2293f1a..5bd56653b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2135,10 +2135,11 @@ jobs: name: Check container logs for expected message command: | echo "=== Printing Full Container Startup Logs ===" - docker logs my-app + LOG_OUTPUT="$(docker logs my-app 2>&1)" + printf '%s\n' "$LOG_OUTPUT" echo "=== End of Full Container Startup Logs ===" - if docker logs my-app 2>&1 | grep -q "prisma schema out of sync with db. Consider running these sql_commands to sync the two"; then + if printf '%s\n' "$LOG_OUTPUT" | grep -q "prisma schema out of sync with db. Consider running these sql_commands to sync the two"; then echo "Expected message found in logs. Test passed." else echo "Expected message not found in logs. Test failed."