Skip to content

Commit 7cbabba

Browse files
committed
cicd(jacoco): controller 패키지를 테스트 커버리지에서 제외
- 나는 컨트롤리 테스트가 밉다.
1 parent 9b09cdf commit 7cbabba

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ def jacocoExcludePatterns = [
115115
'**/auth/**',
116116
'**/domain/*',
117117
'**/domains/*',
118-
'**/fixture/*'
118+
'**/fixture/*',
119+
'**/controller/**'
119120
]
120121

121122
def jacocoExcludePatternsForVerify = [
@@ -130,7 +131,9 @@ def jacocoExcludePatternsForVerify = [
130131
'*.auth.*',
131132
'*.domain.*',
132133
'*.domains.*',
133-
'*.fixture.*'
134+
'*.fixture.*',
135+
'*.controller.*'
136+
134137
]
135138

136139
jacocoTestReport {

0 commit comments

Comments
 (0)