AlDroid
AlDroid

Reputation: 45

How to run Espresso instrumentation tests in parallel in Firebase Test Lab?

Currently I run Espresso tests on Firebase / Google Test Lab, but it takes time to run them all, as they run in sequentially.

Is there a way to run them in parallel?

Upvotes: 1

Views: 1416

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317828

You would need to shard your tests so that you can kick off multiple batches of test that can run in parallel on different devices. Firebase doesn't provide a way to do this directly, but there is an open source project called Flank that can help.

Upvotes: 2

Related Questions