From 118a7ba3d4de544043fa267406858643b4a4f496 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Wed, 24 Jun 2020 10:34:18 -0500 Subject: [PATCH] Make tox global for update proposal jobs If00afb50c37b45aefbb45070da4efef3e43e62b2 updated the requirements update job to use tox as part of the update checking script. We have ensure-tox as one of the roles in the pre playbook for this job, but it is not set to be made available globally, which results in the script failing with being unable to find tox. This updates the role inclusion to set ensure_global_symlinks: true so tox will be available in the script. Change-Id: I5d3ed4ce62cd8df604802fedf522d644d5664698 Signed-off-by: Sean McGinnis --- playbooks/proposal/pre.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/proposal/pre.yaml b/playbooks/proposal/pre.yaml index 677391d534..07547fdcfd 100644 --- a/playbooks/proposal/pre.yaml +++ b/playbooks/proposal/pre.yaml @@ -42,4 +42,5 @@ - add-sshkey - bindep - ensure-python - - ensure-tox + - role: ensure-tox + ensure_global_symlinks: true