From 61239d1ef723877f2e82a0e857f5cd86195f7290 Mon Sep 17 00:00:00 2001 From: David Moreau-Simard Date: Sun, 22 Oct 2017 23:06:11 -0400 Subject: [PATCH] Test that the project being tested was prepared, not necessarily o-z-j When this job is ran against other repositories such as project-config or zuul-jobs, the project being prepared won't be o-z-j. Change-Id: I8487680ad573b1127e5d2e73fafbd0442e003c62 --- tests/use-cached-repos.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/use-cached-repos.yaml b/tests/use-cached-repos.yaml index adfffe73..0e837171 100644 --- a/tests/use-cached-repos.yaml +++ b/tests/use-cached-repos.yaml @@ -4,7 +4,7 @@ - role: use-cached-repos post_tasks: # openstack-infra/project-config is in 'required-projects'. - # openstack-infra/opentack-zuul-jobs is also implicitly in 'projects'. + # Also check that the project being tested is being prepared. # We're checking them explicitly rather than with_items on zuul.projects # in case there is a regression which would take an item out. - name: Check that openstack-infra/project-config was prepared @@ -12,13 +12,13 @@ path: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/project-config" register: project_config - - name: Check that openstack-infra/openstack-zuul-jobs was prepared + - name: Check this project was prepared stat: - path: "{{ ansible_user_dir }}/src/git.openstack.org/openstack-infra/openstack-zuul-jobs" - register: ozj_config + path: "{{ ansible_user_dir }}/src/{{ zuul.project.canonical_name }}" + register: self_config - name: Validate that required projects have been prepared assert: that: - project_config.stat.exists - - ozj_config.stat.exists + - self_config.stat.exists