From 742f27aae3bd1f986d7e83a42f7f493f4f6a893d Mon Sep 17 00:00:00 2001 From: dojin Date: Sun, 3 Mar 2024 22:58:30 +0900 Subject: [PATCH] [fix] test ignore and ktlint (#93) * ktlint * ignore test --- build.gradle.kts | 3 ++- .../kotlin/com/mjucow/eatda/health/HealthCheckController.kt | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2d9b395..584cbb9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -198,7 +198,8 @@ tasks.jacocoTestCoverageVerification { "com.mjucow.eatda.jooq.*", "*.Companion", "*.s3.*", - "*.popularstore.*" // FIXME: redis 이슈 해결 후 제거 + "*.popularstore.*", // FIXME: redis 이슈 해결 후 제거 + "*.health.*" ) } } diff --git a/src/main/kotlin/com/mjucow/eatda/health/HealthCheckController.kt b/src/main/kotlin/com/mjucow/eatda/health/HealthCheckController.kt index 3f9fc1a..3680b2e 100644 --- a/src/main/kotlin/com/mjucow/eatda/health/HealthCheckController.kt +++ b/src/main/kotlin/com/mjucow/eatda/health/HealthCheckController.kt @@ -15,5 +15,4 @@ class HealthCheckController { fun healthCheck(): String { return "ok" } - }