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-06-12 00:41:25 +0300
committerAdrien Ferrand <adferrand@users.noreply.github.com>2019-06-12 00:41:25 +0300
commit0c5f526f8bd69de37ee7b6de05f45040394cd6f2 (patch)
tree085ef0c9d9ab9639f13a5faa7bbc54b9f2beaea3 /tox.cover.py
parent5385375571d06c0c6a1c2c07b46df03496d90e47 (diff)
Remove the Postfix plugin (#7097)
* Remove the postfix plugin. * Remove references to postfix plugin in code. * Remove reference to postfix plugin in docs.
Diffstat (limited to 'tox.cover.py')
-rwxr-xr-xtox.cover.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tox.cover.py b/tox.cover.py
index d0f97626a..65dc4a8a9 100755
--- a/tox.cover.py
+++ b/tox.cover.py
@@ -9,7 +9,7 @@ DEFAULT_PACKAGES = [
'certbot_dns_digitalocean', 'certbot_dns_dnsimple', 'certbot_dns_dnsmadeeasy',
'certbot_dns_gehirn', 'certbot_dns_google', 'certbot_dns_linode', 'certbot_dns_luadns',
'certbot_dns_nsone', 'certbot_dns_ovh', 'certbot_dns_rfc2136', 'certbot_dns_route53',
- 'certbot_dns_sakuracloud', 'certbot_nginx', 'certbot_postfix', 'letshelp_certbot']
+ 'certbot_dns_sakuracloud', 'certbot_nginx', 'letshelp_certbot']
COVER_THRESHOLDS = {
'certbot': {'linux': 98, 'windows': 93},
@@ -30,12 +30,10 @@ COVER_THRESHOLDS = {
'certbot_dns_route53': {'linux': 92, 'windows': 92},
'certbot_dns_sakuracloud': {'linux': 97, 'windows': 97},
'certbot_nginx': {'linux': 97, 'windows': 97},
- 'certbot_postfix': {'linux': 100, 'windows': 100},
'letshelp_certbot': {'linux': 100, 'windows': 100}
}
-SKIP_PROJECTS_ON_WINDOWS = [
- 'certbot-apache', 'certbot-postfix', 'letshelp-certbot']
+SKIP_PROJECTS_ON_WINDOWS = ['certbot-apache', 'letshelp-certbot']
def cover(package):