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/setup.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/setup.yml')
-rw-r--r-- | resources/roles/qtip-workspace/files/copy/setup.yml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/resources/roles/qtip-workspace/files/copy/setup.yml b/resources/roles/qtip-workspace/files/copy/setup.yml index 0923ba52..4fa75579 100644 --- a/resources/roles/qtip-workspace/files/copy/setup.yml +++ b/resources/roles/qtip-workspace/files/copy/setup.yml @@ -49,25 +49,3 @@ with_items: - "{{ qtip_cache }}" - "{{ qtip_results }}" - -# Initialize testapi database -- hosts: localhost - tasks: - - name: create project and pod - uri: - url: "{{ testapi_url }}/{{item}}s" - method: POST - body: "{{ lookup('file', '{}/{}.json'.format(qtip_fixtures, item)) }}" - status_code: [200, 403] - body_format: json - with_items: - - project - - pod - - name: create cases - uri: - url: "{{ testapi_url }}/projects/qtip/cases" - method: POST - body: "{{ lookup('file', '{}/case.json'.format(qtip_fixtures)) }}" - status_code: [200, 403] - body_format: json - tags: [testapi] |