Brian Dailey
Brian Dailey
When testing in Django, the audits are automatically triggered. This allows users to load fixtures without unnecessarily triggering audits. See the keyward argument 'raw' here: https://docs.djangoproject.com/en/1.6/ref/signals/#django.db.models.signals.pre_save Also see previous unmerged...
See notes for [changes to transaction management in 1.6](https://docs.djangoproject.com/en/1.7/topics/db/transactions/#why-django-uses-autocommit): > Before Django 1.6, autocommit was turned off, and it was emulated by forcing a commit after write operations in the...