mirror of https://github.com/ansible/ansible.git
Integration tests requirements (#26545)
* Removed pexpect and jmespath requirement, install it in task directly * Removed passlib dependencypull/26549/head
parent
294c0f91c0
commit
0d48732e7e
@ -0,0 +1,4 @@
|
|||||||
|
- hosts: testhost
|
||||||
|
gather_facts: yes
|
||||||
|
roles:
|
||||||
|
- { role: filters }
|
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
# Requirements have to be installed prior to running ansible-playbook
|
||||||
|
# because plugins and requirements are loaded before the task runs
|
||||||
|
pip install jmespath
|
||||||
|
|
||||||
|
ANSIBLE_ROLES_PATH=../ ansible-playbook filters.yml -i ../../inventory -e @../../integration_config.yml "$@"
|
@ -1,9 +1,6 @@
|
|||||||
cryptography
|
cryptography
|
||||||
jinja2
|
jinja2
|
||||||
jmespath
|
|
||||||
junit-xml
|
junit-xml
|
||||||
ordereddict ; python_version < '2.7'
|
ordereddict ; python_version < '2.7'
|
||||||
paramiko
|
paramiko
|
||||||
passlib
|
|
||||||
pexpect
|
|
||||||
pyyaml
|
pyyaml
|
||||||
|
Loading…
Reference in New Issue