Skip to content

Commit

Permalink
chore(#92): 이미지 연관 테스트 제외
Browse files Browse the repository at this point in the history
  • Loading branch information
dldmsql committed Feb 11, 2024
1 parent 415e9b3 commit 8a49cb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sonar {
property 'sonar.language', 'java'
property 'sonar.sourceEncoding', 'UTF-8'
property("sonar.test.inclusions", "**/*Test.java")
property "sonar.exclusions", "**/test/**, **/*Application*.java, **/dto/**, **/entity/**, **/*Exception*.java, **/*RepositoryImpl.java, **/global/**, **/resources/**, **/*Dao*.java, **/dev/**, **/admin/**"
property "sonar.exclusions", "**/test/**, **/*Application*.java, **/dto/**, **/entity/**, **/*Exception*.java, **/*RepositoryImpl.java, **/global/**, **/resources/**, **/*Dao*.java, **/dev/**, **/admin/**, **/Image*.java"
property "sonar.java.coveragePlugin", "jacoco"
property 'sonar.coverage.jacoco.xmlReportPaths', 'build/reports/jacoco/test/jacocoTestReport.xml'
}
Expand Down Expand Up @@ -128,6 +128,7 @@ jacocoTestReport {
"**/*Dao*",
"**/dev/**",
"**/admin/**",
"**/Image*"
])
}))
}
Expand Down Expand Up @@ -164,6 +165,7 @@ jacocoTestCoverageVerification {
"**/*Dao*",
"**/dev/**",
"**/admin/**",
"**/Image*"
])
}))
}
Expand Down

0 comments on commit 8a49cb2

Please sign in to comment.