Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 836 Bytes

File metadata and controls

37 lines (27 loc) · 836 Bytes

Tag a test case

You can add an allure tag to a test case by to apply a gherkin tag to a corresponding scenario:

Feature: Allure tag support
    @distributed
    Scenario: Applying a tag directly to a scenario
        Given noop

The tag can also be applied to a feature. In that case it propagates to all scenarios of the feature:

@isolated
Feature: Allure tag support
    Scenario: Applying a tag to a feature
        Given noop

You can add any number of tags that way:

@node-1 @node-2
Feature: Allure tag support
    @node-3 @node-4
    Scenario: Applying multiple tags
        Given noop