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:
authorJakub Warmuz <jakub@warmuz.org>2015-05-10 20:51:07 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-05-10 20:56:41 +0300
commitb4c747a2838f8cd86962669cc49c60a92997bf60 (patch)
tree2b63a60fc2b624c69fd0fa78803573da77d8a046 /tox.cover.sh
parent5fbc5cee2e2ee3bbaa131d29391c9e61ea8465a2 (diff)
parent99b2003e6172995ae6e8abf2441acd16bf0f44db (diff)
Merge branch 'bugs/402' into pkgs_sep_prep
Conflicts: letsencrypt/tests/client_test.py tox.ini
Diffstat (limited to 'tox.cover.sh')
-rwxr-xr-xtox.cover.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/tox.cover.sh b/tox.cover.sh
index 2cc2484ed..d707e00ec 100755
--- a/tox.cover.sh
+++ b/tox.cover.sh
@@ -9,13 +9,14 @@ cover () {
# --with-cover add up, --cover-erase must not be set for coveralls
# to get all the data); --with-cover scopes coverage to only
# specific package, positional argument scopes tests only to
- # specific package directory
- nosetests -c /dev/null --with-cover --cover-package "$1" \
- --cover-min-percentage="$2" "$1"
+ # specific package directory; --cover-tests makes sure every tests
+ # is run (c.f. #403)
+ nosetests -c /dev/null --with-cover --cover-tests --cover-package \
+ "$1" --cover-min-percentage="$2" "$1"
}
# don't use sequential composition (;), if letsencrypt_nginx returns
# 0, coveralls submit will be triggered (c.f. .travis.yml,
# after_success)
-cover letsencrypt 88 && cover acme 100 && \
- cover letsencrypt_apache 67 && cover letsencrypt_nginx 90
+cover letsencrypt 94 && cover acme 99 && \
+ cover letsencrypt_apache 78 && cover letsencrypt_nginx 94