diff --git a/.github/workflows/CI-CD_Pipeline.yml b/.github/workflows/CI-CD_Pipeline.yml index c2ddb89a..3867e31a 100644 --- a/.github/workflows/CI-CD_Pipeline.yml +++ b/.github/workflows/CI-CD_Pipeline.yml @@ -82,7 +82,7 @@ jobs: run: | cat > .env << 'EOF' # Datasource 설정 (application-test.yml에서 참조) - TEST_DATASOURCE_URL=jdbc:h2:mem:db_test;MODE=MySQL + TEST_DATASOURCE_URL=jdbc:h2:mem:db_test;MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE TEST_DATASOURCE_USERNAME=sa TEST_DATASOURCE_PASSWORD= TEST_DATASOURCE_DRIVER=org.h2.Driver diff --git a/backend/src/test/resources/application-test-ci.yml b/backend/src/test/resources/application-test-ci.yml index 8bcf3783..5f2fa412 100644 --- a/backend/src/test/resources/application-test-ci.yml +++ b/backend/src/test/resources/application-test-ci.yml @@ -20,6 +20,7 @@ spring: use_sql_comments: true format_sql: true highlight_sql: true + dialect: org.hibernate.dialect.H2Dialect mail: host: smtp.daum.net