Python packages into their own file.
This commit is contained in:
parent
b0e70c6b60
commit
46a85427d7
|
|
@ -5,6 +5,12 @@
|
||||||
# https://pip.pypa.io/en/stable/user_guide/#requirements-files
|
# https://pip.pypa.io/en/stable/user_guide/#requirements-files
|
||||||
#
|
#
|
||||||
# Tests run on the previous and current (latest) version of Ansible.
|
# Tests run on the previous and current (latest) version of Ansible.
|
||||||
ansible>={{ meta.galaxy_info.min_ansible_version }}
|
ansible-core >= {{ meta.galaxy_info.min_ansible_version }}
|
||||||
# Some Jinja2 filters are used that are available in the newer releases.
|
# Some Jinja2 filters are used that are available in the newer releases.
|
||||||
jinja2 >= 2.11.2
|
jinja2 >= 2.11.2
|
||||||
|
|
||||||
|
# For testing this role using `molecule` in CI, these requirements are needed.
|
||||||
|
molecule == 5.*
|
||||||
|
molecule-plugins[docker] == 23.*
|
||||||
|
ansible-lint == 6.*
|
||||||
|
paramiko == 3.*
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,10 @@ skipsdist = true
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps =
|
deps =
|
||||||
|
-rrequirements.txt
|
||||||
ansible5: ansible == 5.*
|
ansible5: ansible == 5.*
|
||||||
ansible6: ansible == 6.*
|
ansible6: ansible == 6.*
|
||||||
ansible7: ansible == 7.*
|
ansible7: ansible == 7.*
|
||||||
molecule == 5.*
|
|
||||||
molecule-plugins[docker] == 23.*
|
|
||||||
ansible-lint == 6.*
|
|
||||||
paramiko == 3.*
|
|
||||||
commands = molecule test
|
commands = molecule test
|
||||||
setenv =
|
setenv =
|
||||||
TOX_ENVNAME={envname}
|
TOX_ENVNAME={envname}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue