Tag Archives: python

Using a Test Database in Django

As I mentioned in my previous post, we’re using MySQL on our development machines. It has several advantages, but one of the drawbacks is unittests run slower when not using Sqlite (big ups to MockSoul for posting his benchmarks). The … Continue reading

Posted in Web Design & Development | Tagged , , , , , | Leave a comment

Cross Database Incompatibility Using Django South

When our team (at Govnex) started using South Migrations we encountered a cross-database compatibility issue. I was using MySQL on my local machine for its performance and so I could browse the database using phpMyAdmin, while our other members were … Continue reading

Posted in Web Design & Development | Tagged , , , , , , , | Leave a comment