From ee4a856ca9352842f792f9e6c500ae8dff9cec21 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 14 Jun 2017 15:02:39 -0400 Subject: [PATCH] Ensure gather_subset is a list Otherwise, we get a deprecation warning: [DEPRECATION WARNING]: Using comma separated values for a list has been deprecated. You should instead use the correct YAML syntax for lists. Change-Id: I59194aa420c449a5d557dfa087f7ab3ec6521afa Signed-off-by: Paul Belanger --- playbooks/tox/pre.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/tox/pre.yaml b/playbooks/tox/pre.yaml index 2a3872f1..8e705439 100644 --- a/playbooks/tox/pre.yaml +++ b/playbooks/tox/pre.yaml @@ -1,5 +1,6 @@ - hosts: all gather_facts: true - gather_subset: "!all" + gather_subset: + - "!all" roles: - run-bindep