From 61409179dfdd6969c624dd741813291332644003 Mon Sep 17 00:00:00 2001 From: Yehuda Sadeh Date: Mon, 13 Oct 2014 15:07:06 -0700 Subject: [PATCH] tasks/s3tests: add slow backend configurable Adding this so that we can modify the clients' conf file as needed with slow backend. This can be achieved by: overrides: s3tests: slow_backend: true Signed-off-by: Yehuda Sadeh --- tasks/s3tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/s3tests.py b/tasks/s3tests.py index 48f49ac8b20f5..7d933e5fb0a6d 100644 --- a/tasks/s3tests.py +++ b/tasks/s3tests.py @@ -246,6 +246,9 @@ def configure(ctx, config): else: s3tests_conf['DEFAULT']['host'] = 'localhost' + if properties is not None and 'slow_backend' in properties: + s3tests_conf['fixtures']['slow backend'] = properties['slow_backend'] + (remote,) = ctx.cluster.only(client).remotes.keys() remote.run( args=[ -- 2.39.5