This document contains useful information about our coding conventions, and things to watch out for, etc.
- Avoid naming test files
test_utils.py
, since we use a library with the same name. Usetest__utils.py
instead. - If you're expecting
reverse
to return locales in the URL, useLocalizingClient
instead of the default client for theTestCase
class.