From 075b4e4510ad404d6d42a4561dc175e6d246c018 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 28 Jun 2017 10:32:57 -0700 Subject: [PATCH] Correct playbook paths We removed the implied "playbooks/" for explicit run settings. Change-Id: I8ff204fcf45f4f3b250436727d408527a90a4449 --- .zuul.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index d4cb5597..7e1815b5 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,41 +1,41 @@ - job: name: tox parent: base - pre-run: tox/pre - post-run: tox/post + pre-run: playbooks/tox/pre + post-run: playbooks/tox/post - job: name: tox-cover parent: tox - run: tox/cover + run: playbooks/tox/cover voting: false - job: name: tox-docs parent: tox - run: tox/docs - post-run: tox/docs-post + run: playbooks/tox/docs + post-run: playbooks/tox/docs-post - job: name: tox-linters parent: tox - run: tox/linters + run: playbooks/tox/linters - job: name: tox-py27 parent: tox - run: tox/py27 + run: playbooks/tox/py27 - job: name: tox-py35 parent: tox - run: tox/py35 + run: playbooks/tox/py35 - job: name: tox-tarball parent: tox - run: tox/tarball - post-run: tox/tarball-post + run: playbooks/tox/tarball + post-run: playbooks/tox/tarball-post - project: name: openstack-infra/openstack-zuul-jobs