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-02-21 03:20:16 +0300
committerBrad Warren <bmw@users.noreply.github.com>2019-02-21 03:20:16 +0300
commiteb5c4eca877baf52c0c39778002fce1e9482cff7 (patch)
tree6e9f9e7afcfa3922a52ea809e761eeeeddc3ff54 /tox.cover.py
parenteef4c476335a9338dc71509d3d7c21de7d81b486 (diff)
[Windows] Working unit tests for certbot-nginx (#6782)
This PR fixes certbot-nginx and relevant tests to make them succeed on Windows. Next step will be to enable integration tests through certbot-ci in a future PR. * Fix tests and incompabilities in certbot-nginx for Windows * Fix lint, fix oldest local dependencies
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 008424641..e323ba255 100755
--- a/tox.cover.py
+++ b/tox.cover.py
@@ -35,7 +35,8 @@ COVER_THRESHOLDS = {
}
SKIP_PROJECTS_ON_WINDOWS = [
- 'certbot-apache', 'certbot-nginx', 'certbot-postfix', 'letshelp-certbot']
+ 'certbot-apache', 'certbot-postfix', 'letshelp-certbot']
+
def cover(package):
threshold = COVER_THRESHOLDS.get(package)['windows' if os.name == 'nt' else 'linux']
@@ -54,6 +55,7 @@ def cover(package):
sys.executable, '-m', 'coverage', 'report', '--fail-under', str(threshold), '--include',
'{0}/*'.format(pkg_dir), '--show-missing'])
+
def main():
description = """
This script is used by tox.ini (and thus by Travis CI and AppVeyor) in order
@@ -77,5 +79,6 @@ Option -e makes sure we fail fast and don't submit to codecov."""
for package in packages:
cover(package)
+
if __name__ == '__main__':
main()