chamikaramj commented on code in PR #34538:
URL: https://github.com/apache/beam/pull/34538#discussion_r2027643449
##########
sdks/java/io/iceberg/build.gradle:
##########
@@ -152,9 +153,43 @@ task integrationTest(type: Test) {
testClassesDirs = sourceSets.test.output.classesDirs
}
+task dataflowIntegrationTest(type: Test) {
+ group = "Verification"
+ def args = [
+ "--runner=DataflowRunner",
+ "--region=us-central1",
+ "--project=${gcpProject}",
+ "--tempLocation=${gcpTempLocation}",
+ "--tempRoot=${gcpTempLocation}",
+ "--experiments=use_runner_v2"
+ ]
+ if (project.hasProperty('enableManagedTransforms')) {
+ args.add("--experiments=enable_managed_transforms")
+ }
+ systemProperty "beamTestPipelineOptions", JsonOutput.toJson(args)
+
+ // Disable Gradle cache: these ITs interact with live service that should
always be considered "out of date"
+ outputs.upToDateWhen { false }
+
+ filter {
+ includeTestsMatching
'org.apache.beam.sdk.io.iceberg.catalog.BigQueryMetastoreCatalogIT.testRead'
Review Comment:
Let's also add tests for BQ and Kafka in a separate PR.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]