From 99a6c03507e496df67c9f2eecd0585e891fb0ad4 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 3 Sep 2017 13:20:37 +0200 Subject: [PATCH] manager: skiptests is not positional argument mbs-build adds --skiptests option, but mbs-manager thinks that skiptests is positional argument. Fixes: aac4227eb83b8146487c415fee4267d22baad506 Signed-off-by: Igor Gnatenko --- module_build_service/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_build_service/manage.py b/module_build_service/manage.py index 2e76424..e915f7d 100755 --- a/module_build_service/manage.py +++ b/module_build_service/manage.py @@ -118,7 +118,7 @@ def cleardb(): @manager.option('branch') @manager.option('url') -@manager.option('skiptests', action='store_true') +@manager.option('--skiptests', action='store_true') @manager.option('-l', '--add-local-build', action='append', default=None, dest='local_build_nsvs') def build_module_locally(url, branch, local_build_nsvs=None, skiptests=False): """ Performs local module build using Mock