f5d829392a
* Remove .keep files from test/results/ dirs. * Remove classification of test/results/ dir. * Add results_relative to data context. * Use variables in delegation paths. * Standardize file writing and results paths. * Fix issues reported by PyCharm. * Clean up invocation of coverage command. It now runs through the injector. * Hack to allow intercept_command in cover.py. * Simplify git ignore for test results. * Use test result tmp dir instead of cache dir. * Remove old .pytest_cache reference. * Fix unit test docker delegation. * Show HTML report link. * Clean up more results references. * Move import sanity test output to .tmp dir. * Exclude test results dir from coverage. * Fix import sanity test lib paths. * Fix hard-coded import test paths. * Fix most hard-coded integration test paths. * Fix PyCharm warnings. * Fix import placement. * Fix integration test dir path. * Fix Shippable scripts. * Fix Shippable matrix check. * Overhaul key pair management.
103 lines
2.2 KiB
Text
103 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/docsite/_build
|
|
docs/docsite/*.html
|
|
docs/docsite/htmlout
|
|
docs/docsite/rst/cli/ansible-*.rst
|
|
docs/docsite/rst/cli/ansible.rst
|
|
docs/docsite/rst/dev_guide/collections_galaxy_meta.rst
|
|
docs/docsite/rst/dev_guide/testing/sanity/index.rst.new
|
|
docs/docsite/rst/modules/*.rst
|
|
docs/docsite/rst/playbooks_directives.rst
|
|
docs/docsite/rst/plugins_by_category.rst
|
|
docs/docsite/rst/plugins/*/*.rst
|
|
docs/docsite/rst/reference_appendices/config.rst
|
|
docs/docsite/rst/reference_appendices/playbooks_keywords.rst
|
|
docs/docsite/rst_warnings
|
|
docs/docsite/searchindex.js
|
|
docs/docsite/_static/*.gif
|
|
docs/docsite/_static/*.png
|
|
docs/docsite/_static/websupport.js
|
|
# deb building stuff...
|
|
/debian/
|
|
deb-build
|
|
# Vim swap files
|
|
*.swp
|
|
*.swo
|
|
credentials.yml
|
|
# test output
|
|
*.retry
|
|
*.out
|
|
.pytest_cache/
|
|
.tox
|
|
.cache
|
|
.pytest_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
|
|
.python-version
|
|
# Release directory
|
|
packaging/release/ansible_release
|
|
/.cache/
|
|
/test/results/
|
|
/test/integration/cloud-config-aws.yml
|
|
/test/integration/inventory.networking
|
|
/test/integration/inventory.winrm
|
|
/test/integration/cloud-config-aws.yml
|
|
/test/integration/cloud-config-cs.ini
|
|
# 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
|
|
/SYMLINK_CACHE.json
|
|
changelogs/.plugin-cache.yaml
|
|
.ansible-test-timeout.json
|
|
# ansible-test temporary metadata file for use with delgation
|
|
/metadata-*.json
|