anuragmantri commented on code in PR #12274:
URL: https://github.com/apache/iceberg/pull/12274#discussion_r1958600915


##########
build.gradle:
##########
@@ -546,6 +546,27 @@ project(':iceberg-azure') {
     testImplementation libs.esotericsoftware.kryo
     testImplementation libs.testcontainers
   }
+
+  sourceSets {
+    integration {
+      java.srcDir "$projectDir/src/integration/java"
+      resources.srcDir "$projectDir/src/integration/resources"
+      compileClasspath += main.output + test.output
+      runtimeClasspath += main.output + test.output
+    }
+  }
+
+  configurations {
+    integrationImplementation.extendsFrom testImplementation
+    integrationRuntime.extendsFrom testRuntimeOnly
+  }
+
+  task integrationTest(type: Test) {
+    useJUnitPlatform()
+    testClassesDirs = sourceSets.integration.output.classesDirs
+    classpath = sourceSets.integration.runtimeClasspath
+    jvmArgs += project.property('extraJvmArgs')
+  }

Review Comment:
   Thanks for catching this. I added the line on both `iceberg-aws` and 
`iceberg-azure`. I did try to run `./gradlew check` and it is triggering the 
tests. I cannot pass them because of the docker env issue on my local machine, 
I will wait for PRB to verify they run on the `check` task. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to