Post archive

Enable setup.py test in your Django apps

2009 June 29

Setuptools comes with a way to run the tests on your application. This allows the user of your software to download it, and run python setup.py test and check to see if the tests in your application pass. This is really useful ...