Hot to implements Fragmented execution by Groovy DSL #923
-
I am improving my project that runs on Marathon and I need the ability to run 15 tests on the D1 device and the same 15 tests on the D2 device. The documentation says that FragmentationFilterConfiguration should be used for this and an example on Kotlin DSL is given. But in my project I am using Groovy and for example I set the annotation filter for marathon as |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There is no accessor in Groovy DSL for the builder of FYI You're likely misunderstanding what a fragmentation filter is. For your scenario just start two marathon invocations, one for device D1 and another one for D2 |
Beta Was this translation helpful? Give feedback.
There is no accessor in Groovy DSL for the builder of
FragmentationFilterConfiguration
. The only way, which I'm not sure is possible, is to instantiateFragmentationFilterConfiguration
directly and pass it into theallowlist
mutable list.FYI You're likely misunderstanding what a fragmentation filter is. For your scenario just start two marathon invocations, one for device D1 and another one for D2