Skip to content

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#

tests:
  configurations:
    - platform: ios
      #...
      filters:
        - FirstTestClass
        - SecondTestClass/testMethod

Specify class names with or without method names in XCTest compatible format.

Android#

tests:
  configurations:
    - platform: android
      #...
      filters:
        - FirstTestClass

Specify only class names for tests to be executed.