mirror of
https://github.com/outbackdingo/patroni.git
synced 2026-08-25 23:10:15 +00:00
* Use virtualenv to install tox in behave Dockerfile Upstream change in postgres docker image uses debian restriction on installing system-wide non-debian python packages. Debian doesn't provide a tox>=4, so we need to install with pip. * Exclude all output directories generated using `tox-wrapper.sh` The `tox-wrapper.sh` script created by `features/Dockerfile` creates directories like features/output-tox-pg14-docker-behave-etcd-lin-973719674/ * Reduce footprint of tox behave docker image
72 lines
684 B
Plaintext
72 lines
684 B
Plaintext
*.py[cod]
|
|
|
|
# vi(m) swap files:
|
|
*.sw?
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Packages
|
|
.cache/
|
|
*.egg
|
|
*.eggs
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
bin
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage
|
|
.tox
|
|
nosetests.xml
|
|
coverage.xml
|
|
htmlcov
|
|
junit.xml
|
|
features/output*
|
|
dummy
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
|
|
pgpass
|
|
scm-source.json
|
|
|
|
# Sphinx-generated documentation
|
|
docs/_build/
|
|
docs/build/
|
|
docs/source/_static/
|
|
docs/source/_templates/
|
|
docs/modules/
|
|
docs/pdf/
|
|
|
|
# Pycharm IDE
|
|
.idea/
|
|
|
|
#VSCode IDE
|
|
.vscode/
|
|
|
|
# Virtual environment
|
|
venv*/
|
|
|
|
# Default test data directory
|
|
data/
|
|
|
|
# macOS
|
|
**/.DS_Store
|