Skip to content

Commit

Permalink
Make ranges of steps ignore never tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKenyon committed Apr 19, 2024
1 parent 9e78303 commit b8bda2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stimela/kitchen/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def process_specifier_list(specs: List[str], num=0):
active_steps = (tag_selected_steps | selected_steps) or set(self.steps.keys())
active_steps |= always_steps
active_steps -= tag_skipped_steps
active_steps -= (never_steps - (tag_selected_steps | selected_steps))
active_steps -= never_steps - tag_selected_steps
active_steps -= skipped_steps
active_steps |= cherry_picked_steps

Expand Down

0 comments on commit b8bda2f

Please sign in to comment.