Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 0 additions & 108 deletions callback_plugins/custom_junit.py
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restore this file

This file was deleted.

94 changes: 0 additions & 94 deletions ci/report_result.yml
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

restore this file

This file was deleted.

4 changes: 0 additions & 4 deletions ci/vars/common.yml
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

restore this file

This file was deleted.

1 change: 0 additions & 1 deletion roles/common/tasks/container_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

- name: |
TEST Verify {{ container_name }} container status
{{ common_container_test_id }}
ansible.builtin.assert:
that:
- "container_status.stdout | length != 0"
Expand Down
4 changes: 2 additions & 2 deletions roles/common/tasks/cr_tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
- name: |
TEST Verify that the {{ item.kind }} {{ item.name }} CR exists
{{ common_cr_test_id }}
ansible.builtin.command:
cmd: |
oc get {{ item.kind }} {{ item.name }}
Expand All @@ -10,7 +9,8 @@
failed_when:
- result.rc != 0

- name: Verify that a CR is ready {{ common_cr_ready_test_id }}
- name: |
TEST Verify that a CR is ready
ansible.builtin.command:
cmd: |
oc get {{ item.kind }} {{ item.name }} -o jsonpath='{.status.conditions[?(@.type=="{{ item.condition_type }}")].status}{"\n"}'
Expand Down
3 changes: 1 addition & 2 deletions roles/common/tasks/crd_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@

- name: |
TEST Verify CRD {{ item }} is found
{{ common_crd_test_id }}
ansible.builtin.assert:
that:
- "'NotFound' not in output.stderr"
success_msg: "CRD {{ item }} is found."
fail_msg: "CRD {{ item }} not found. Error: {{ output.stderr }}"
fail_msg: "CRD {{ item }} not found. Error: {{ output.stderr }}"
1 change: 0 additions & 1 deletion roles/common/tasks/endpoint_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

- name: |
TEST Check that {{ item[0] }} {{ item[2] }} endpoint exists
{{ common_endpoint_test_id }}
ansible.builtin.assert:
that:
- output.stdout != ""
Expand Down
1 change: 0 additions & 1 deletion roles/common/tasks/file_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

- name: |
TEST Verify the file {{ item }} exists
{{ common_file_test_id }}
ansible.builtin.assert:
that:
- fstats.stat.exists
Expand Down
1 change: 0 additions & 1 deletion roles/common/tasks/manifest_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

- name: |
TEST Get {{ item }} packagemanifest
{{ common_manifest_test_id }}
ansible.builtin.shell:
cmd: |
oc get packagemanifests | grep "{{ pack_name.stdout }}" | wc -l
Expand Down
1 change: 0 additions & 1 deletion roles/common/tasks/pod_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

- name: |
TEST Check {{ item }} pod is {{ common_pod_status_str }} in {{ common_pod_nspace }} namespace
{{ common_pod_test_id }}
ansible.builtin.command:
cmd: |
oc get pod -n "{{ common_pod_nspace }}" "{{ podinstance.stdout }}"
Expand Down
3 changes: 1 addition & 2 deletions roles/common/tasks/project_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@

- name: |
TEST Verify {{ item }} project exists
{{ common_project_test_id }}
ansible.builtin.assert:
that:
- "'NotFound' not in output.stderr"
success_msg: "project {{ item }} is found."
fail_msg: "project {{ item }} not found. Error: {{ output.stderr }}"
fail_msg: "project {{ item }} not found. Error: {{ output.stderr }}"
3 changes: 1 addition & 2 deletions roles/common/tasks/service_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@

- name: |
TEST Verify {{ item }} service is running in {{ common_service_nspace }} namespace
{{ common_service_test_id }}
ansible.builtin.assert:
that:
- "'NotFound' not in output.stderr"
success_msg: "service {{ item }} is running."
fail_msg: "service {{ item }} not running. Error: {{ output.stderr }}"
fail_msg: "service {{ item }} not running. Error: {{ output.stderr }}"
3 changes: 1 addition & 2 deletions roles/common/tasks/subscription_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@

- name: |
TEST Check that {{ item }} subscription exists in {{ common_subscription_nspace }} namespace
{{ common_subscription_test_id }}
ansible.builtin.assert:
that:
- "'NotFound' not in output.stderr"
success_msg: "subscription {{ item }} is found."
fail_msg: "subscription {{ item }} not found. Error: {{ output.stderr }}"
fail_msg: "subscription {{ item }} not found. Error: {{ output.stderr }}"
Loading