Do not install requests[security] for MongoDB tests (#60083)

Cleanup packages installed via pip for MongoDB tests

ci_complete
This commit is contained in:
Sam Doran 2019-08-05 15:01:58 -04:00 committed by GitHub
parent d3da8e4a5b
commit 0892d48ebc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 3 deletions

View file

@ -4,4 +4,3 @@ skip/osx
skip/freebsd skip/freebsd
skip/rhel skip/rhel
needs/root needs/root
disabled

View file

@ -4,4 +4,3 @@ skip/osx
skip/freebsd skip/freebsd
skip/rhel skip/rhel
needs/root needs/root
disabled

View file

@ -46,5 +46,4 @@ redhat_packages_py3:
pip_packages: pip_packages:
- psutil - psutil
- requests[security]
- pymongo - pymongo

View file

@ -17,3 +17,8 @@
yum: yum:
name: "{{ redhat_packages_py36 }}" name: "{{ redhat_packages_py36 }}"
state: absent state: absent
- name: remove mongodb pip packages
pip:
name: "{{ pip_packages }}"
state: absent

View file

@ -184,3 +184,4 @@
pip: pip:
name: "{{ pip_packages }}" name: "{{ pip_packages }}"
state: present state: present
notify: remove mongodb pip packages