Skip to content

Commit

Permalink
Disable FirestoreIT tests on Dataflow (apache#27267)
Browse files Browse the repository at this point in the history
* Disable FirestoreIT tests on Dataflow

* Fix spotless
  • Loading branch information
Abacn authored and aleksandr-dudko committed Jun 29, 2023
1 parent aa3e484 commit 6b79006
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions runners/google-cloud-dataflow-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,8 @@ task googleCloudPlatformLegacyWorkerIntegrationTest(type: Test, dependsOn: copyG
exclude '**/PubsubReadIT.class'
exclude '**/FhirIOReadIT.class'
exclude '**/gcp/spanner/changestreams/it/*.class'
// TODO(https://github.com/apache/beam/issues/25851) failing due to internal Firestore breaking change
exclude '**/FirestoreV1IT.class'
maxParallelForks 4
classpath = configurations.googleCloudPlatformIntegrationTest
testClassesDirs = files(project(":sdks:java:io:google-cloud-platform").sourceSets.test.output.classesDirs)
Expand Down Expand Up @@ -606,6 +608,8 @@ task googleCloudPlatformRunnerV2IntegrationTest(type: Test) {
exclude '**/FhirIOLROIT.class'
exclude '**/FhirIOSearchIT.class'
exclude '**/FhirIOPatientEverythingIT.class'
// TODO(https://github.com/apache/beam/issues/25851) failing due to internal Firestore breaking change
exclude '**/FirestoreV1IT.class'

maxParallelForks 4
classpath = configurations.googleCloudPlatformIntegrationTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
import org.apache.beam.vendor.guava.v26_0_jre.com.google.common.util.concurrent.MoreExecutors;
import org.joda.time.Instant;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
Expand Down Expand Up @@ -186,8 +185,6 @@ public final void listCollections() throws Exception {
}

@Test
@Ignore(
"https://github.com/apache/beam/issues/25851 failing due to internal Firestore breaking change")
public final void listDocuments() throws Exception {
DocumentGenerator documentGenerator = helper.documentGenerator(NUM_ITEMS_TO_GENERATE, "a");
Instant readTime =
Expand Down

0 comments on commit 6b79006

Please sign in to comment.