1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-30 07:50:43 +00:00

Fix problem where pip module cannot accept multiple extras

PR #46937
Fixes #46519
This commit is contained in:
Zhikang Zhang 2018-10-22 16:21:45 -04:00 committed by Sviatoslav Sydorenko
parent 4352a4e54d
commit b697da39c8
2 changed files with 12 additions and 2 deletions

View file

@ -470,6 +470,10 @@
assert:
that: "version13 is failed"
- name: try install package with setuptools extras
pip:
name: "{{pip_test_package}}[dev,test]"
- name: clean up
pip:
name: "{{ pip_test_packages }}"