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-12-09 23:50:20 +0300
committerohemorange <ebportnoy@gmail.com>2019-12-09 23:50:20 +0300
commite048da1e389ede7a52bd518ab4ebf9a0b18bfafc (patch)
tree40988b5a13e06d53585c2ed44db73fb9759e993b /tox.cover.py
parent34b568f36648dd5c4103c3a444e81b5662e6be81 (diff)
Reorganize imports (#7616)
* Isort execution * Fix pylint, adapt coverage * New isort * Fix magic_typing lint * Second round * Fix pylint * Third round. Store isort configuration * Fix latest mistakes * Other fixes * Add newline * Fix lint errors
Diffstat (limited to 'tox.cover.py')
-rwxr-xr-xtox.cover.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.cover.py b/tox.cover.py
index 85e929567..0ef5c0d07 100755
--- a/tox.cover.py
+++ b/tox.cover.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import argparse
-import subprocess
import os
+import subprocess
import sys
DEFAULT_PACKAGES = [
@@ -16,7 +16,7 @@ COVER_THRESHOLDS = {
'acme': {'linux': 100, 'windows': 99},
'certbot_apache': {'linux': 100, 'windows': 100},
'certbot_dns_cloudflare': {'linux': 98, 'windows': 98},
- 'certbot_dns_cloudxns': {'linux': 99, 'windows': 99},
+ 'certbot_dns_cloudxns': {'linux': 98, 'windows': 98},
'certbot_dns_digitalocean': {'linux': 98, 'windows': 98},
'certbot_dns_dnsimple': {'linux': 98, 'windows': 98},
'certbot_dns_dnsmadeeasy': {'linux': 99, 'windows': 99},