12 Nov
Posted by Elf Sternberg as django, programming, python, web development
This is part 3 of a series.
In part 1 we set up a Hudson test server, and in part 2 I introduced a simple Django application with some simple tests.
Now we’re going to make Hudson run those simple tests. Prerequisites: Your box for running this application must be able to run both Hudson and [...]
12 Nov
Posted by Elf Sternberg as programming, site administration
In my first post on Continual Integration Testing of Web Applications with Facebook, I mentioned setting up the Hudson server, fronted by Nginx, as the first step. It would be nice if I could also refer to that application by something other than a port number. Rather than “http://elfsternberg.com:8080″, I wanted to be able to [...]
12 Nov
Posted by Elf Sternberg as django, programming, python, web development
This is Part 2 of a series.
Before I demonstrate how to do continual integration testing, I need a demonstration application. I’ve chosen a simple Django application, your basic echo program, with no styling or media at all. This ought to be more than enough to demonstrate base functionality.
A New Django Project
Start by building [...]