parser.add_argument('--machine', required=False, choices=['random', 'all'],
help='Run tests on different machines (random/all).')
- parser.add_argument('-t', '--select-tags', dest="select_tags",
- nargs='*', default=None,
- help='Filter all (unhidden) tests to any that match any of the specified tags.')
- parser.add_argument('-T', '--exclude-tags', dest="exclude_tags",
- nargs='*', default=None,
- help='Exclude all (unhidden) tests that match any of the specified tags. (exclude applies before select)')
+ parser.add_argument('-t', '--select-tag', dest="select_tags",
+ action='append', default=None,
+ help='Filter all (unhidden) tests to any that match any of the specified tag(s).')
+ parser.add_argument('-T', '--exclude-tag', dest="exclude_tags",
+ action='append', default=None,
+ help='Exclude all (unhidden) tests that match any of the specified tag(s). (exclude applies before select)')
parser.set_defaults(func=self.run)