diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2011-11-13 19:05:02 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2011-11-13 19:05:02 +0000 |
| commit | 5de31cb8cb83c33d932d5ddf76ff81506c28bdff (patch) | |
| tree | 87b208cbc06a67c34cfb94ccf851f000165c3a74 /tests/modeltests/model_forms | |
| parent | b8353016b7d6a4046f4c30017987c2e75597285b (diff) | |
Refs #17215: Avoid generating 47 leftover tmp dirs during a clean test run.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17094 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/model_forms')
| -rw-r--r-- | tests/modeltests/model_forms/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/modeltests/model_forms/models.py b/tests/modeltests/model_forms/models.py index a960611ffa..35fc9a7bc1 100644 --- a/tests/modeltests/model_forms/models.py +++ b/tests/modeltests/model_forms/models.py @@ -7,13 +7,14 @@ and the examples are probably a poor fit for the ``ModelForm`` syntax. In other words, most of these tests should be rewritten. """ +import os import tempfile from django.core.files.storage import FileSystemStorage from django.db import models -temp_storage_dir = tempfile.mkdtemp() +temp_storage_dir = tempfile.mkdtemp(dir=os.environ['DJANGO_TEST_TEMP_DIR']) temp_storage = FileSystemStorage(temp_storage_dir) ARTICLE_STATUS = ( |
