[1.8.x] Prevented some tests from writing in the CWD.

Backport of 90b069c33f from master
This commit is contained in:
Aymeric Augustin 2015-02-21 21:09:30 +01:00 committed by Tim Graham
parent 1ae2df6bfc
commit 311b880fa9
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
from __future__ import unicode_literals
import os
import tempfile
import warnings
from django.apps import apps
@ -46,6 +47,8 @@ class DumpDataAssertMixin(object):
natural_foreign_keys=False, natural_primary_keys=False,
use_base_manager=False, exclude_list=[], primary_keys=''):
new_io = six.StringIO()
if filename:
filename = os.path.join(tempfile.gettempdir(), filename)
management.call_command('dumpdata', *args, **{'format': format,
'stdout': new_io,
'stderr': new_io,