diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-21 10:28:56 +0800 |
---|---|---|
committer | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-21 13:55:11 +0800 |
commit | a00a76746646619a1fbd9246f23d78eac5ce3b56 (patch) | |
tree | bd778d95f9b9e3e76e4be076646b187a8f199474 /resources/roles/qtip-workspace/files/copy/run.yml | |
parent | b1683c050b3e603378c57a21a7851dac432111b7 (diff) |
Organize testapi tasks into ansible roles
Change-Id: If073401b94e7146521fb54a85470b931e458de3c
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'resources/roles/qtip-workspace/files/copy/run.yml')
-rw-r--r-- | resources/roles/qtip-workspace/files/copy/run.yml | 27 |
1 files changed, 5 insertions, 22 deletions
diff --git a/resources/roles/qtip-workspace/files/copy/run.yml b/resources/roles/qtip-workspace/files/copy/run.yml index ed87b6a4..98846ffc 100644 --- a/resources/roles/qtip-workspace/files/copy/run.yml +++ b/resources/roles/qtip-workspace/files/copy/run.yml @@ -48,7 +48,7 @@ - hosts: localhost - tasks: + pre_tasks: - name: aggregate QPI results from all tested nodes aggregate: @@ -58,24 +58,7 @@ # Generate and publish report - - name: push result to testapi - uri: - url: "{{ testapi_url }}/results" - body: "{{ item|to_json }}" - method: POST - body_format: json - status_code: 200 - with_items: - - - project_name: "{{ project_name }}" - case_name: "{{ case_name }}" - pod_name: "{{ pod_name }}" - installer: "{{ installer }}" - version: "{{ version }}" - scenario: "{{ scenario }}" - start_date: "{{ ansible_date_time.date }}" - stop_date: "{{ ansible_date_time.date }}" - criteria: "" - details: "{{ pod_result }}" - - tags: [testapi] + roles: + - role: opnfv-testapi + action: report + when: testapi_url is defined |