From 4af147c787993229ddec7ffeb0b79efa81384bf3 Mon Sep 17 00:00:00 2001 From: Andy Whitcroft Date: Wed, 2 Aug 2017 00:53:05 +0100 Subject: [PATCH] run-autopkgtest: add --bulk option to direct ubuntu jobs to the huge queue Signed-off-by: Andy Whitcroft --- run-autopkgtest | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/run-autopkgtest b/run-autopkgtest index 2c0c95f..c2ba42d 100755 --- a/run-autopkgtest +++ b/run-autopkgtest @@ -58,6 +58,8 @@ def parse_args(): 'Otherwise this has the same behaviour as test-git.') parser.add_argument('--all-proposed', action='store_true', help='Disable apt pinning and use all of -proposed') + parser.add_argument('--bulk', action='store_true', + help='Mark this as a bulk (low priority) test') parser.add_argument('package', nargs='+', help='Source package name(s) whose tests to run.') args = parser.parse_args() @@ -108,6 +110,8 @@ if __name__ == '__main__': context = '' params = {} + if args.bulk: + context = 'huge-' if args.trigger: params['triggers'] = args.trigger if args.ppa: