mirror of
https://github.com/django/django.git
synced 2025-01-19 23:02:20 +00:00
Prevented some tests from writing in the CWD.
This commit is contained in:
parent
9eab328444
commit
90b069c33f
3
tests/fixtures/tests.py
vendored
3
tests/fixtures/tests.py
vendored
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user