Cucumber tags for scenario outline examples
After some research I found out that this is already supported from out of the box. You just have to add two Example headers to the test. Using my own example from the question to illustrate
Scenario Outline: Doing some tests
Given a step
When I do some <input>
Then I should get some <output>
@daily
Examples:
|input |output |
|daily 1 |daily 2 o |
@weekly
Examples:
|input |output |
|week 1 |week 1 o |
|week 2 |week 3 o |
. .
. .
. .
|week 999 |week 999 o|