Skip to content

Commit

Permalink
move jmx setting to integTest
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Li <[email protected]>
  • Loading branch information
joshuali925 committed Jan 22, 2024
1 parent 4fb7a66 commit 462b1fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build-tools/opensearchplugin-coverage.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ task dummyTest(type: Test) {
jacoco {
destinationFile = file("${jacocoDir}/test.exec")
destinationFile.parentFile.mkdirs()
jmx = true
}
}

Expand All @@ -40,6 +39,11 @@ task dummyIntegTest(type: Test) {
jacoco {
destinationFile = file("${jacocoDir}/integTest.exec")
destinationFile.parentFile.mkdirs()
}
}

integTest {
jacoco {
jmx = true
}
}
Expand Down

0 comments on commit 462b1fa

Please sign in to comment.