May 5th, 2009
At VendAsta we use automated build scripts and a TeamCity server for continuous integration. Whenever someone commits code to a project, a whole suite of automated build targets are run against the code base to check things like unit tests, python syntax (via pylint) and code coverage. One thing that was missing from the mix [...]
Posted in Programming, VendAsta, Work | 5 Comments »
Tags: build scripts, javascript, Projects, testing, VendAsta
[ Back to top ]
December 27th, 2008
The default test behaviour for a Django site creates and then destroys a whole test database on each test run. Normally this is not a problem, but the way Dreamhost has their MySQL setup running, the commands to create and drop databases are not available outside of their administration panel. What follows is the solution I have come up with and am currently using to run Django unittests with my Dreamhost MySQL databases.
Posted in Programming, Tutorials | 2 Comments »
Tags: django, dreamhost, Programming, testing
[ Back to top ]