You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A path to a testplan is provided as a value of the ALLURE_TESTPLAN_PATH environment variable.
If a valid testplan file is provided, only matched tests should be run. A test is matched if there is at least one entry in the tests array, such that:
It has either the id property, or the selector property or both, AND
If the id property is present in the entry, it must be the same as the Allure ID of the test, AND
If the selector property is present in the entry, it must be the same as the fullName of the test.
Motivation
Put allure-csharp integrations in line with other Allure integrations in terms of features.
The text was updated successfully, but these errors were encountered:
There is a general mechanism used by Allure integrations to run tests selectively. It uses a testplan - a .json file with the following schema:
A path to a testplan is provided as a value of the
ALLURE_TESTPLAN_PATH
environment variable.If a valid testplan file is provided, only matched tests should be run. A test is matched if there is at least one entry in the
tests
array, such that:id
property, or theselector
property or both, ANDid
property is present in the entry, it must be the same as the Allure ID of the test, ANDselector
property is present in the entry, it must be the same as thefullName
of the test.Motivation
Put allure-csharp integrations in line with other Allure integrations in terms of features.
The text was updated successfully, but these errors were encountered: