cf1337ca9a
* Use correct pip version in ansible-test. * Add git fallback for validate-modules. * Run sanity tests in a docker container. * Use correct python version for sanity tests. * Pin docker completion images and add default. * Split pylint execution into multiple contexts. * Only test .py files in use-argspec-type-path test. * Accept identical python interpeter name or binary. * Switch cloud tests to default container. * Remove unused extras from pip install. * Filter out empty pip commands. * Don't force running of pip list. * Support delegation for windows and network tests. * Fix ansible-test python version usage. * Fix ansible-test python version skipping. * Use absolute path for log in ansible-test. * Run vyos_command test on python 3. * Fix windows/network instance persistence. * Add `test/cache` dir to classification. * Enable more python versions for network tests. * Fix cs_router test.
107 lines
2.2 KiB
Text
107 lines
2.2 KiB
Text
# build products...
|
|
*.py[co]
|
|
build
|
|
AUTHORS.TXT
|
|
# Emacs backup and autosave files...
|
|
*~
|
|
.\#*
|
|
\#*
|
|
# RPM stuff...
|
|
MANIFEST
|
|
dist
|
|
rpm-build
|
|
# Eclipse/PyDev stuff...
|
|
.project
|
|
.pydevproject
|
|
# PyCharm stuff...
|
|
.idea
|
|
#IntelliJ IDEA stuff..
|
|
*.iml
|
|
#VSCode stuff..
|
|
.vscode/
|
|
# Mac OS X stuff...
|
|
.DS_Store
|
|
# manpage build stuff...
|
|
docs/man/man1/ansible*.1
|
|
docs/man/man1/ansible*.1.asciidoc.in
|
|
docs/man/man3/*
|
|
# Sublime stuff
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
# docsite stuff...
|
|
docs/api/_build/
|
|
docs/api/rst/
|
|
docs/docsite/*.html
|
|
docs/docsite/_build
|
|
docs/docsite/_static/*.gif
|
|
docs/docsite/_static/*.png
|
|
docs/docsite/_static/websupport.js
|
|
docs/docsite/htmlout
|
|
docs/docsite/searchindex.js
|
|
docs/docsite/rst_warnings
|
|
docs/docsite/rst/*_module.rst
|
|
docs/docsite/rst/ansible.rst
|
|
docs/docsite/rst/ansible-*.rst
|
|
docs/docsite/rst/community_maintained.rst
|
|
docs/docsite/rst/config.rst
|
|
docs/docsite/rst/core_maintained.rst
|
|
docs/docsite/rst/list_of_*.rst
|
|
docs/docsite/rst/modules_by_category.rst
|
|
docs/docsite/rst/network_maintained.rst
|
|
docs/docsite/rst/plugins_by_category.rst
|
|
docs/docsite/rst/partner_maintained.rst
|
|
docs/docsite/rst/playbook_keywords.rst
|
|
docs/docsite/rst/playbooks_directives.rst
|
|
docs/docsite/rst/plugins/*/*.rst
|
|
# deb building stuff...
|
|
/debian/
|
|
deb-build
|
|
# Vim swap files
|
|
*.swp
|
|
*.swo
|
|
credentials.yml
|
|
# test output
|
|
*.retry
|
|
*.out
|
|
.tox
|
|
.cache
|
|
results.xml
|
|
coverage.xml
|
|
/test/units/cover-html
|
|
/test/integration/targets/*/backup/
|
|
/test/cache/*
|
|
# Development
|
|
/test/develop
|
|
venv
|
|
Vagrantfile
|
|
.vagrant
|
|
ansible.egg-info/
|
|
/shippable/
|
|
/test/integration/cloud-config-*.*
|
|
!/test/integration/cloud-config-*.*.template
|
|
# Release directory
|
|
packaging/release/ansible_release
|
|
/.cache/
|
|
/test/results/coverage/*=coverage.*
|
|
/test/results/coverage/coverage*
|
|
/test/results/reports/coverage*.xml
|
|
/test/results/reports/coverage*/
|
|
/test/results/bot/*.json
|
|
/test/results/junit/*.xml
|
|
/test/results/logs/*.log
|
|
/test/results/data/*.json
|
|
/test/integration/inventory.remote
|
|
/test/integration/inventory.networking
|
|
/test/integration/inventory.winrm
|
|
/test/integration/cloud-config-aws.yml
|
|
# python 'rope' stuff
|
|
.ropeproject
|
|
# local 'ack' config files
|
|
.ackrc
|
|
# default 'coverage html' results
|
|
htmlcov/
|
|
# default 'coverage' tool data
|
|
.coverage
|
|
# ansible-test coverage results
|
|
test/units/.coverage.*
|
|
/test/integration/cloud-config-azure.yml
|