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/rhel
needs/root
disabled

View file

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

View file

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

View file

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

View file

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