pyleaf wrote:

> I am new for django.
> any suggestion about how to build Continuous testing for django project?

install fabric - and don't worry about its remote options yet. Then
create a fabfile.py at the root of your app.

Create 3 targets; pull, test, and int. They pull from Git (you _are_
using Git, right??); pull and run your test batch; and pull, test, and
commit, respectively. Add a string argument to int() and pass it thru
to your integration line.

(Remember to call __int__ if you need the native int(), or your int
target will conflict!)

Then get a cheap server and run CruiseControl.rb on it. Add your
project with cruise add ... -r git, or something like that. Google
knows the arguments.

Install CCMenu on your desktop to watch the builds without keeping a
browser window open.

And remember that Continuous Integration & testing is not about the
tools - it is a state of mind! Constantly test, with fab test,
constantly pull in case your colleagues are up to something, and
constantly run fab int:'what I did' each time the code gets any tiny
bit better.

--
  Phlip
  
http://browsershots.org/http://zeekland.zeroplayer.com/Uncle_Wiggilys_Travels/1

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to