Test filters
To granulary organize pipelines you may want to execute only some subsets of tests. To do this you define a list of inclusive predicates.
filters
make sense only in configuration
clause.
iOS#
Specify class names with or without method names in XCTest compatible format.
Android#
tests:
configurations:
- platform: android
#...
filters:
- FirstTestClass
- AnnotationName # Annotation name without package path or @ symbol. Example: LargeTest, FlakyTest
Specify only class or annotation names for tests to be executed.