mirror of
https://github.com/certbot/certbot.git
synced 2026-01-27 19:42:53 +03:00
Fixes https://github.com/certbot/certbot/issues/8781. This PR makes our test farm tests into a normal package so it and its dependencies can be tracked and installed like our other packages. Other noteworthy changes in this PR: * Rather than continuing to place logs in your CWD, they're placed in a temporary directory that is printed to the terminal. * `tests/letstest/auto_targets.yaml` was deleted rather than renamed because the file is no longer used. * make a letstest package * remove deleted deps * fix letstest install * add __init__.py * call main * Explicitly mention activating venv * rerename file * fix version.py path * clarify "this" * Use >= instead of caret requirement
61 lines
639 B
Plaintext
61 lines
639 B
Plaintext
*.pyc
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist*/
|
|
/venv*/
|
|
/.tox/
|
|
/releases*/
|
|
/log*
|
|
letsencrypt.log
|
|
certbot.log
|
|
poetry.lock
|
|
|
|
# coverage
|
|
.coverage
|
|
/htmlcov/
|
|
|
|
/.vagrant
|
|
|
|
tags
|
|
|
|
# editor temporary files
|
|
*~
|
|
*.sw?
|
|
\#*#
|
|
.idea
|
|
.ropeproject
|
|
.vscode
|
|
|
|
# auth --cert-path --chain-path
|
|
/*.pem
|
|
|
|
.venv
|
|
|
|
# pytest cache
|
|
.cache
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
|
|
# docker files
|
|
.docker
|
|
|
|
# certbot tests
|
|
.certbot_test_workspace
|
|
**/assets/pebble*
|
|
**/assets/challtestsrv*
|
|
|
|
# snap files
|
|
.snapcraft
|
|
parts
|
|
prime
|
|
stage
|
|
*.snap
|
|
snap-constraints.txt
|
|
qemu-*
|
|
certbot-dns*/certbot-dns*_amd64*.txt
|
|
certbot-dns*/certbot-dns*_arm*.txt
|
|
/certbot_amd64*.txt
|
|
/certbot_arm*.txt
|
|
certbot-dns*/snap
|