aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--buildout.cfg22
1 files changed, 19 insertions, 3 deletions
diff --git a/buildout.cfg b/buildout.cfg
index bd57fe1..bcdd699 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -1,13 +1,29 @@
[buildout]
-parts = django
+parts = python django-1.0 django-trunk
develop = .
eggs = django-shorturls
-[django]
+[python]
+recipe = zc.recipe.egg
+interpreter = python
+eggs = ${buildout:eggs}
+
+[django-1.0]
recipe = djangorecipe
version = 1.0.2
projectegg = shorturls
project = shorturls
settings = testsettings
test = shorturls
-eggs = ${buildout:eggs} \ No newline at end of file
+testrunner = test-1.0
+eggs = ${buildout:eggs}
+
+[django-trunk]
+recipe = djangorecipe
+version = trunk
+projectegg = shorturls
+project = shorturls
+settings = testsettings
+test = shorturls
+testrunner = test-trunk
+eggs = ${buildout:eggs}