From 9d44b10aff8c4c6b74f92323c56c267cf4a41e3d Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sun, 8 Feb 2015 10:01:36 +0000 Subject: [PATCH 1/2] Quickfix for #235 --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index cd81c0125..4c691a85b 100644 --- a/tox.ini +++ b/tox.ini @@ -10,6 +10,9 @@ commands = python setup.py develop easy_install letsencrypt[testing] python setup.py test -q # -q does not suppress errors +# quickfix for #235 +deps = pip<6.0.7 + [testenv:cover] basepython = python2.7 commands = From b1552052bbd7deac85ad2a6d9de7a324c11221f5 Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Sun, 8 Feb 2015 11:54:25 +0000 Subject: [PATCH 2/2] tox: pip install -e (fixes #235) --- tox.ini | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 4c691a85b..d3b67e629 100644 --- a/tox.ini +++ b/tox.ini @@ -7,21 +7,18 @@ envlist = py26,py27,cover,lint [testenv] commands = - python setup.py develop easy_install letsencrypt[testing] + pip install -e .[testing] python setup.py test -q # -q does not suppress errors -# quickfix for #235 -deps = pip<6.0.7 - [testenv:cover] basepython = python2.7 commands = - python setup.py develop easy_install letsencrypt[testing] + pip install -e .[testing] python setup.py nosetests --with-coverage --cover-min-percentage=66 [testenv:lint] # recent versions of pylint do not support Python 2.6 (#97, #187) basepython = python2.7 commands = - python setup.py dev + pip install -e .[dev] pylint --rcfile=.pylintrc letsencrypt