-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Added documentation about Cucumber support
- Loading branch information
Piotr Adamczyk
authored and
mergify-bot
committed
Oct 5, 2020
1 parent
c56b658
commit 50c40db
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Cucumber support | ||
|
||
Firebase test lab and Flank [do not support](https://firebase.google.com/docs/test-lab/troubleshooting?platform=android#support-for-platforms-android) Cucumber. | ||
However, you could run these tests. | ||
- To make them work properly please disable sharding using `.yml` options: | ||
```yaml | ||
flank: | ||
disable-sharding: true | ||
``` | ||
or by using command-line option | ||
```shell script | ||
--disable-sharding | ||
``` | ||
|
||
- If you would like to use orchestrator please make sure that you are using at least version `1.3.0` of it. | ||
- [Currently](https://github.com/Flank/flank/issues/1189), Flank will run Cucumber tests only if there are other Instrumented tests to run in your test apk. | ||
In other cases Flank will fast fail with `There are no tests to run` message. |