From d321ed952013bd001bb83c2d646ce918646a015a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Mon, 9 Mar 2015 14:01:47 +0100 Subject: [PATCH] avocado.plugins.runner: improve -m description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding multiple multiplex files via -m is order dependent. This might not be obvious and this patch adds the note about this. Signed-off-by: Lukáš Doktor --- avocado/plugins/runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/avocado/plugins/runner.py b/avocado/plugins/runner.py index 3164bb2f..16e11e49 100644 --- a/avocado/plugins/runner.py +++ b/avocado/plugins/runner.py @@ -111,7 +111,8 @@ class TestRunner(plugin.Plugin): if multiplexer.MULTIPLEX_CAPABLE: mux = self.parser.add_argument_group('multiplex arguments') mux.add_argument('-m', '--multiplex-files', nargs='*', default=None, - help='Path(s) to a avocado multiplex (.yaml) file(s)') + help='Path(s) to a avocado multiplex (.yaml) ' + 'file(s) (order dependent)') mux.add_argument('--filter-only', nargs='*', default=[], help='Filter only path(s) from multiplexing') mux.add_argument('--filter-out', nargs='*', default=[], -- GitLab