soynatan / django-easy-audit

Yet another Django audit log app, hopefully the simplest one.
GNU General Public License v3.0
719 stars 178 forks source link

Not working during testing #300

Open denyswsu opened 1 month ago

denyswsu commented 1 month ago

First of all I want to thank you for this library!

But the problem I faced was that it didn't work in my tests, I spend about a day to find the issue and resolve it.

So just after browsing the source code I realized that TEST = True needs to be set in django settings for it to work, because otherwise it's called after transaction is finished (which is not the case inside test method).

Leaving it here for people who will face same problem, or let's add it to README/wiki?