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:
authorBrad Warren <bmw@users.noreply.github.com>2019-03-07 22:57:08 +0300
committerAdrien Ferrand <adferrand@users.noreply.github.com>2019-03-07 22:57:08 +0300
commit45229eebdfd08baac26c9e8b78d76490b6f7cbce (patch)
treea70d1efadd387207c83b36962e6994e48521e372 /tox.cover.py
parent34393f9bf4a0ca7045a4cfd1e4eafa5842b3a832 (diff)
Drop expected Apache coverage to workaround #6813. (#6826)
* Drop expected Apache coverage to workaround #6813. * add comment
Diffstat (limited to 'tox.cover.py')
-rwxr-xr-xtox.cover.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tox.cover.py b/tox.cover.py
index d0f97626a..6f5392b71 100755
--- a/tox.cover.py
+++ b/tox.cover.py
@@ -14,7 +14,10 @@ DEFAULT_PACKAGES = [
COVER_THRESHOLDS = {
'certbot': {'linux': 98, 'windows': 93},
'acme': {'linux': 100, 'windows': 99},
- 'certbot_apache': {'linux': 100, 'windows': 100},
+ # certbot_apache coverage not being at 100% is a workaround for
+ # https://github.com/certbot/certbot/issues/6813. We should increase
+ # the minimum coverage back to 100% when this issue is resolved.
+ 'certbot_apache': {'linux': 99, 'windows': 99},
'certbot_dns_cloudflare': {'linux': 98, 'windows': 98},
'certbot_dns_cloudxns': {'linux': 99, 'windows': 99},
'certbot_dns_digitalocean': {'linux': 98, 'windows': 98},