We can rerun failed Scenarios in the feature file in Behave Retry Mechanism. This is taken care of with the help of the formatters.
All the available formats in Behave Retry Mechanism can be seen with the command given below −
behave –f help
You can see the following screen after using the command −
The rerun formatter is used to capture the failing scenario and output it in a separate file. Let us take an example, where we have 1 failed feature.
Then capture the failed feature in another feature file with the command −
behave –f rerun –o failed_features.feature
You can see the following −
The failed_features.feature file gets generated within the project. It contains the feature file name Payment1.feature where we have a failure.
To re-trigger only failed Scenario, we have to run the command stated below −
behave @failed_features.feature
You will see the following screen −
Next Topic – Click Here
Pingback: Behave - Exclude Tests - Adglob Infosystem Pvt Ltd