Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ integTest {
testLogging {
events "failed"
}

dependsOn ':opensearch-sql-plugin:bundlePlugin'
if(getOSFamilyType() != "windows") {
dependsOn startPrometheus
Expand Down Expand Up @@ -516,8 +516,17 @@ integTest {

// Exclude this IT, because they executed in another task (:integTestWithSecurity)
exclude 'org/opensearch/sql/security/**'

finalizedBy 'printIntegTestPaths'
}

task printIntegTestPaths {
doLast {
println "Test report available at: file://${project.buildDir}/reports/tests/integTest/index.html"
println "integTest cluster logs available at: file://${project.buildDir}/testclusters/integTest-0/logs/integTest.log"
println "remoteCluster cluster logs available at: file://${project.buildDir}/testclusters/remoteCluster-0/logs/remoteCluster.log"
}
}

task comparisonTest(type: RestIntegTestTask) {
testLogging {
Expand Down
Loading