We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9fd982 commit 586c639Copy full SHA for 586c639
roles/common/tasks/manifest_tests.yml
@@ -15,7 +15,7 @@
15
16
- name: |
17
TEST Get {{ manifest.name }} packagemanifest
18
- {{ manifest.test_id id manifest.test_id is defined }}
+ {{ manifest.test_id if manifest.test_id is defined }}
19
ansible.builtin.shell:
20
cmd: |
21
oc get packagemanifests | grep "{{ pack_name.stdout }}" | wc -l
roles/common/tasks/project_tests.yml
@@ -8,7 +8,7 @@
8
9
10
TEST Verify {{ project.name }} project exists
11
- {{ project.test_id id project.test_id is defined }}
+ {{ project.test_id if project.test_id is defined }}
12
ansible.builtin.assert:
13
that:
14
- "'NotFound' not in output.stderr"
0 commit comments