In behave, how do you run a scenario only?
If you want to run a single test for that feature, use the -n or –name flag which seems to want the text after Scenario: behave -n ‘This is a scenario name’ You can run a feature file by using -i or –include flags and then the name of the feature file. behave -i file_name.feature … Read more