diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 20:03:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-14 20:03:01 +0000 |
commit | a453ac31f3428614cceb99027f8efbdb9258a40b (patch) | |
tree | f61f87408f32a8511cbd91799f9cececb53e0374 /collections-debian-merged/ansible_collections/community/vmware/tox.ini | |
parent | Initial commit. (diff) | |
download | ansible-a453ac31f3428614cceb99027f8efbdb9258a40b.tar.xz ansible-a453ac31f3428614cceb99027f8efbdb9258a40b.zip |
Adding upstream version 2.10.7+merged+base+2.10.8+dfsg.upstream/2.10.7+merged+base+2.10.8+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collections-debian-merged/ansible_collections/community/vmware/tox.ini')
-rw-r--r-- | collections-debian-merged/ansible_collections/community/vmware/tox.ini | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/collections-debian-merged/ansible_collections/community/vmware/tox.ini b/collections-debian-merged/ansible_collections/community/vmware/tox.ini new file mode 100644 index 00000000..3699d648 --- /dev/null +++ b/collections-debian-merged/ansible_collections/community/vmware/tox.ini @@ -0,0 +1,45 @@ +[tox] +minversion = 1.4.2 +envlist = linters +skipsdist = True + +[testenv] +install_command = pip install {opts} {packages} +#deps = -r{toxinidir}/requirements.txt +# -r{toxinidir}/test-requirements.txt + +[testenv:linters] +deps = + flake8 + antsibull-changelog + yamllint +commands = + flake8 plugins {posargs} + antsibull-changelog lint + ./check-ignores-order + yamllint -c .yamllint.yaml tests + +[testenv:add_docs] +deps = git+https://github.com/ansible-network/collection_prep +commands = collection_prep_add_docs -p . + +[testenv:antsibull-changelog] +deps = + ansible + antsibull-changelog +commands = + antsibull-changelog {posargs} + +[testenv:venv] +# This env is used to push new release on Galaxy +deps = ansible +commands = {posargs} + +[flake8] +# E123, E125 skipped as they are invalid PEP-8. + +show-source = True +ignore = E123,E125,E402,E501,E741,W503 +max-line-length = 160 +builtins = _ +exclude = .git,.tox,tests/unit/compat/ |