I am using the fixtures generated from dumpdata for unittests. But I am getting warnings about naive datetime used:
RuntimeWarning: DateTimeField Entry.expire received a naive datetime
A quick look at fixture shows the datetime is generated in this format:
"2014-06-06T00:00:00Z"
which is not timezone aware, reading about the manual makes me guess that dumpdata should generate the timezone aware datetime strings, obviously not in my case.