summaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg20
1 files changed, 19 insertions, 1 deletions
diff --git a/buildout.cfg b/buildout.cfg
index 9aaf66e..4de9036 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -2,10 +2,12 @@
parts = python
sphinxbuilder
test
+ coverage
develop = .
eggs =
- urllib3==1.7
+ urllib3==1.7.1
pyOpenSSL==0.13.1
+ ${deps:extraeggs}
[python]
recipe = zc.recipe.egg
@@ -17,7 +19,23 @@ recipe = pbp.recipe.noserunner
eggs = ${python:eggs}
mock
+[coverage]
+recipe = pbp.recipe.noserunner
+eggs = ${test:eggs}
+ coverage
+defaults = --with-coverage
+ --cover-package=etcd
+
[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
source = ${buildout:directory}/docs-source
build = ${buildout:directory}/docs
+
+
+[deps:python2]
+extraeggs =
+ dnspython==1.12.0
+
+[deps:python3]
+extraeggs =
+ dnspython3==1.12.0