I have a text file with list of test names. I want to run those tests in sequential order. Is there any command to use?
I have used --testlist option.
I have a text file with list of test names. I want to run those tests in sequential order. Is there any command to use?
I have used --testlist option.
The only way to do this is to execute the console multiple times, specifying one test each time.
The --testlist option creates a filter, which selects the tests, but does not control the order of their execution. To control the order would require a new option as well as new internal parameters to be passed to the framework itself.