summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2019-09-10 12:40:59 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-11 07:30:08 +0100
commitffe9e4303fa9799d2e8af9188853a262e15af226 (patch)
treee01491cfd686b248f4b08b09ba3f6577876cb7d8
parentd41606244c170fd547496e5df9e3d28ce2d2af68 (diff)
downloadopenembedded-core-ffe9e4303fa9799d2e8af9188853a262e15af226.tar.gz
oeqa/selftest/context.py: For -t/-T use append argparse action
Use the 'append' action of argparse instead of nargs. This changes the behaviour of the option from "-t foo bar -r" to "-t foo -t bar -r". Additionally rename the long form options to be consistent with behaviour, such that they specifying a single tag at a time. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/context.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 3126ada716..c4eb5d614e 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -78,12 +78,12 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
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)