I know it's possible to run specific examples in cucumber
cucumber tests/features/my.feature:141 #just example 141
cucumber tests/features/my.feature:141:151 #just examples 141 & 151
What is the syntax to run a range of examples from 141 to 151?
cucumber tests/features/my.feature:141-151 #this does not work
If it helps, Here is the Scenario Outline snippet... assuming 'tc-44' is on line 141 in the file
Scenario Outline: running scenario subset of examples
Given we are testing a subset
And it is a scenario outline with many examples
Then we can run a subset by providing a range
Examples:
| test-case |
| tc-44 |
| tc-45 |
| tc-46 |
| tc-47 |
| tc-48 |
| tc-49 |
...
| tc-100 |