Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2019-07-03 02:21:24 +0300
committerohemorange <ebportnoy@gmail.com>2019-07-03 02:21:24 +0300
commit88876b990178006ee52a4ed2324d6bdf8a78cb9f (patch)
treee06f78a10cac357f6fdf6a400ba7ecb8dc6df834 /tox.cover.py
parent448d15922367da05a0f95f1729773af7d139b582 (diff)
[Windows] Security model for files permissions - STEP 3c (#6967)
* Implement security.open * Clean lint * Rename security into filesystem * Update certbot/compat/filesystem.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/util.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/lock.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/compat/os.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/lock.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/compat/os.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Simplify and make more clear comment on os.open. * Secure implementation preventing race conditions * Revert "Secure implementation preventing race conditions" This reverts commit dbb85492195122020ca0b4a685ddb4836fdc6d12. * Simplify the logic on Windows. * Implement os.open to prevent race conditions * Add unit tests * Handle os.O_CREAT and os.O_EXCL directly from the Windows APIs * Improve comments * Use CREATE_ALWAYS * Adapt coverage threshold to new Windows specific LOCs. * Update certbot/compat/os.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/compat/os.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/compat/os.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/compat/filesystem.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Add some comments * Fix pylint * Improve docstring * Added test cases * Improve docstring * Update certbot/lock.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Update certbot/lock.py Co-Authored-By: ohemorange <ebportnoy@gmail.com> * Fix lint * Adapt coverage * Adapt coverage
Diffstat (limited to 'tox.cover.py')
-rwxr-xr-xtox.cover.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.cover.py b/tox.cover.py
index 0a94cb73f..c313419ed 100755
--- a/tox.cover.py
+++ b/tox.cover.py
@@ -12,7 +12,7 @@ DEFAULT_PACKAGES = [
'certbot_dns_sakuracloud', 'certbot_nginx', 'letshelp_certbot']
COVER_THRESHOLDS = {
- 'certbot': {'linux': 97, 'windows': 96},
+ 'certbot': {'linux': 96, 'windows': 96},
'acme': {'linux': 100, 'windows': 99},
'certbot_apache': {'linux': 100, 'windows': 100},
'certbot_dns_cloudflare': {'linux': 98, 'windows': 98},