Fix combinated run of unarchive and uri tests under centos 6
The unarchive integration test installs pinned packages via pip, the uri test installs them from system packages. This explodes. PR lets unarchive uninstall packages after test ran.
This commit is contained in:
parent
c295de661c
commit
ff88a2a06d
1 changed files with 38 additions and 28 deletions
|
@ -4,6 +4,8 @@
|
|||
path: '{{remote_tmp_dir}}/test-unarchive-tar-gz'
|
||||
state: directory
|
||||
|
||||
- name: Test TLS download
|
||||
block:
|
||||
- name: Install packages to make TLS connections work on CentOS 6
|
||||
pip:
|
||||
name:
|
||||
|
@ -14,7 +16,6 @@
|
|||
when:
|
||||
- ansible_facts.distribution == 'CentOS'
|
||||
- not ansible_facts.python.has_sslcontext
|
||||
|
||||
- name: unarchive a tar from an URL
|
||||
unarchive:
|
||||
src: "https://releases.ansible.com/ansible/ansible-latest.tar.gz"
|
||||
|
@ -22,12 +23,21 @@
|
|||
mode: "0700"
|
||||
remote_src: yes
|
||||
register: unarchive13
|
||||
|
||||
- name: Test that unarchive succeeded
|
||||
assert:
|
||||
that:
|
||||
- "unarchive13.changed == true"
|
||||
|
||||
always:
|
||||
- name: Uninstall CentOS 6 TLS connections packages
|
||||
pip:
|
||||
name:
|
||||
- urllib3
|
||||
- ndg_httpsclient
|
||||
- pyOpenSSL
|
||||
state: absent
|
||||
when:
|
||||
- ansible_facts.distribution == 'CentOS'
|
||||
- not ansible_facts.python.has_sslcontext
|
||||
- name: remove our tar.gz unarchive destination
|
||||
file:
|
||||
path: '{{ remote_tmp_dir }}/test-unarchive-tar-gz'
|
||||
|
|
Loading…
Reference in a new issue