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/regressiontests/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/regressiontests/forms')
| -rw-r--r-- | tests/regressiontests/forms/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/forms/models.py b/tests/regressiontests/forms/models.py index d4e693436b..939055785a 100644 --- a/tests/regressiontests/forms/models.py +++ b/tests/regressiontests/forms/models.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import os import datetime import tempfile @@ -6,7 +7,7 @@ from django.core.files.storage import FileSystemStorage from django.db import models -temp_storage_location = tempfile.mkdtemp() +temp_storage_location = tempfile.mkdtemp(dir=os.environ['DJANGO_TEST_TEMP_DIR']) temp_storage = FileSystemStorage(location=temp_storage_location) |
