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-07-10 16:40:51 +0300
committerJakub Warmuz <jakub@warmuz.org>2015-07-10 18:49:18 +0300
commitb0c72410bacc6c443b34dadbef179bb94fe6946f (patch)
tree853f8635d49f0a1537f78c1b272a0cf31206c3fc /tox.ini
parent0e474436c4295c9d6697fc7ef735c27db5b862a0 (diff)
Unified vector loading in letsencrypt.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index aed60f454..2f20e5799 100644
--- a/tox.ini
+++ b/tox.ini
@@ -28,6 +28,12 @@ commands =
[testenv:lint]
# recent versions of pylint do not support Python 2.6 (#97, #187)
basepython = python2.7
+# separating into multiple invocations disables cross package
+# duplicate code checking; if one of the commands fails, others will
+# continue, but tox return code will reflect previous error
commands =
pip install -r requirements.txt -e .[dev]
- pylint --rcfile=.pylintrc letsencrypt acme letsencrypt_apache letsencrypt_nginx
+ pylint --rcfile=.pylintrc letsencrypt
+ pylint --rcfile=.pylintrc acme
+ pylint --rcfile=.pylintrc letsencrypt_apache
+ pylint --rcfile=.pylintrc letsencrypt_nginx