Skip to content

Commit

Permalink
cliparser: allow to specify list of test cases separated with ','
Browse files Browse the repository at this point in the history
  • Loading branch information
mringwal authored and mkasenberg committed Oct 3, 2024
1 parent ac5a241 commit 6652482
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cliparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ def __init__(self, cli_support=None, board_names=None, add_help=True):
"'Run (Debug Logs)'")

self.add_argument("-c", "--test-cases", nargs='+', default=[],
action="extend",
help="Names of test cases to run. Groups of "
"test cases can be specified by profile names")
"test cases can be specified by profile names."
"Option can be used multiple times.")

self.add_argument("-e", "--excluded", nargs='+', default=[],
help="Names of test cases to exclude. Groups of "
Expand Down

0 comments on commit 6652482

Please sign in to comment.