Hi,
we are switching to buildout for django development, but have several
problems for the moment, mainly related to test running.
Previously we've had a django project in all our applications' directory to
easily run ./manage.py test myapp from inside Eclipse.
now using djangorecipe we can run $ bin/test-1.1, but this is not integrated
into eclipse, which makes its use rather unconvenient.
How should we set up buildout in order to Eclipse recognise the lines of
output?
A related question is about fixtures. How can we load fixtures of an egg?
Here is one of our buildouts:
[buildout]
parts = python django-1.1 omelette
develop = .
eggs =
django-contacts
django-l10n
django-registration
django-uni-form
django-sugar
eggs-directory = /home/nagyv/.buildout/eggs
find-links =
${buildout:eggs-directory}
http://pypi.python.org/simple/
download-cache = /home/nagyv/.buildout/dlcache
extensions = mr.developer
sources = sources
auto-checkout =
uni-form
sugar
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
[django-1.1]
recipe = djangorecipe
version = 1.1.1
project = contacts
projectegg = contacts
settings = testsettings
test = contacts
testrunner = test-1.1
eggs = ${buildout:eggs}
[sources]
uni-form = git git://github.com/nagyv/django-uni-form.git
sugar = git git://github.com/nagyv/django-sugar.git
As a bonus question, I would like to ask as well how to set
${buildout:eggs-directory} and ${buildout:download-directory} for something
like $HOME/.buidout/.... I was Googleing after this but without much
success.
thanks for your greatly appreciated help
Enjoy your day!
Viktor
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.