From c55f089a40a0bd443c697dfdc198f60d6f306eea Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Mon, 20 Apr 2009 10:29:51 -0500 Subject: Added an interpreter, and also added a way to test against multiple Django versions. --- buildout.cfg | 22 +++++++++++++++++++--- 1 file 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} -- cgit v1.2.3