Skip to content

Commit

Permalink
Merge pull request #23578: Remove artificial timeout in FirestoreV1IT…
Browse files Browse the repository at this point in the history
…, Dataflow runner is very slow
  • Loading branch information
chamikaramj authored Oct 13, 2022
2 parents d30ecda + b681a63 commit 2d84233
Showing 1 changed file with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.rules.Timeout;

@SuppressWarnings({
"initialization.fields.uninitialized",
Expand All @@ -76,19 +75,13 @@ abstract class BaseFirestoreIT {
@Rule(order = 1)
public final TestName testName = new TestName();

@Rule(
order =
2) // ensure our helper is "outer" to the timeout so we are allowed to cleanup even if a
// test times out
@Rule(order = 2)
public final FirestoreTestingHelper helper = new FirestoreTestingHelper(CleanupMode.ALWAYS);

@Rule(order = 3)
public final Timeout timeout = new Timeout(10, TimeUnit.MINUTES);

@Rule(order = 4)
public final TestPipeline testPipeline = TestPipeline.create();

@Rule(order = 5)
@Rule(order = 4)
public final TestPipeline testPipeline2 = TestPipeline.create();

protected static final RpcQosOptions RPC_QOS_OPTIONS =
Expand Down

0 comments on commit 2d84233

Please sign in to comment.