Skip to content
rollick edited this page Feb 20, 2014 · 1 revision

Backend Testing

Test Runner

tdaemon (pip install tdaemon) seems to be a popular way to run tests automatically when files change. Here is a shell function for bluebottle testing:

function test-bb() { tdaemon -t django --ignore-dirs=env,docs,build,node_modules,dist --custom-args=" --settings=bluebottle.settings.testing" }

Run with test-bb for all tests or with a specific app test-bb bb_accounts.

Clone this wiki locally